Casting Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

Casting (A)(B)c * d order

A

c is cast to B, then to A, then multiplied by d

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

Unboxing

A

Unboxing automatically turns a Int into an int(for example, inputting and Int to a method that wants an int

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

Boxing

A

Coverts from a int/long/double -> Integer/Long/Double

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

Automatic Conversions

A

byte->short->int->long->float->double

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

(Integer)”Hello”; What type of Error is this?

A

compile error

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

(Integer)(Object)”Hello”: What type of error is this?

A

Runtime cast error

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