Java, Begriffe
Java
Java
10
0.0 (0)
Fichier Détails
Cartes-fiches | 10 |
---|---|
Langue | Deutsch |
Catégorie | Informatique |
Niveau | Université |
Crée / Actualisé | 14.07.2017 / 13.12.2020 |
Lien de web |
https://card2brain.ch/box/20170714_java_begriffe
|
Intégrer |
<iframe src="https://card2brain.ch/box/20170714_java_begriffe/embed" width="780" height="150" scrolling="no" frameborder="0"></iframe>
|
byte
8 Bit Datentyp Ganzzahlen
short
16 Bit Datentyp Ganzzahlen
int
32 Bit Datentyp Ganzzahlen
long
64 Bit Datentyp Ganzzahlen
float
32 Bit Datentyp Fliesskommazahlen
double
64 Bit Datentyp Fliesskommazahlen
boolean
Wahrheitswerte
char
Unicode Zeichen
xxx.MAX_VALUE
xxx.MIN_VALUE
Maximal/Minimale Werte
int i = 1;
i++; //oder ++i
System.out.println("i ist gleich? " + i);
i ist gleich? 2