Java


Set of flashcards Details

Flashcards 10
Language Deutsch
Category Computer Science
Level University
Created / Updated 14.07.2017 / 13.12.2020
Weblink
https://card2brain.ch/box/20170714_java_begriffe
Embed
<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