native Datentypen

NameBeschreibung
byteThe byte data type is an 8-bit signed two’s complement integer. It has a minimum value of -128 and a maximum value of 127 (inclusive).
shortThe short data type is a 16-bit signed two’s complement integer. It has a minimum value of - 32,768 and a maximum value of 32,767 (inclusive).
intBy default, the int data type is a 32-bit signed two’s complement integer, which has a minimum value of -231 and a maximum value of 231-1.
longThe long data type is a 64-bit two’s complement integer. The signed long has a minimum value of and a maximum value of .
floatThe float data type is a single-precision 32-bit IEEE 754 floating point.
doubleThe double data type is a double-precision 64-bit IEEE 754 floating point.
booleanThe Boolean data type has only two possible values: true and false.
charThe char data type is a single 16-bit Unicode character. It has a minimum value of ‘\u0000’ (or 0) and a maximum value of ‘\uffff’ (or 65,535 inclusive).

Variablentypen

Variablen sind innerhalb geschweifter Klammern ”{}” gültig. Bei gleichem Namen können sie sich nicht überdecken.

Konstanten

final int x;