PG 2.4 Wrapper, Enums, Record Flashcards

1
Q

Wrapper

A

damit kann man primitive Datentypen als Referenztypen in eine Objekthülle einwickeln

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Erzeugung eines Integer Objekts (Einwickeln)

A

Integer iWrap= Integer.valueOf(4711);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Aus den Wrapper-Objekten wieder primitve Werte (Auswickeln)

A

int i = iWrap.intValue(iwrap)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Autoboxing
&
Unboxing

A

Integer iWrap = 4711

int i = iWrap;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

von string zu int

A

… .parseInt(…)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

von int zu stirng

A

… .toString()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Enumerations

A

enum Jahreszeit{Frühling, Sommer, Herbst, Winter}

Jahreszeit zeit = Jahreszeit.Sommer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Record

A

ausschließlich Behälter für Daten ohne besonderes Verhaltensrepertoire => Kurzform der Klassendefinition

How well did you know this?
1
Not at all
2
3
4
5
Perfectly