About Question enthuware.ocajp.i.v7.2.1244 :

Help and support on OCA OCP Java Programmer Certification Questions
1Z0-808, 1Z0-809, 1Z0-815, 1Z0-816, 1Z0-817

Moderator: admin

admin
Site Admin
Posts: 10053
Joined: Fri Sep 10, 2010 9:26 pm
Contact:

Re: About Question enthuware.ocajp.i.v7.2.1244 :

Post by admin »

The cast at line 2 is needed means you need the cast to be able to assign a to b. i.e. b = a; will not work. You need to add the cast i.e. b = (B[]) a;

HTH,
Paul.
If you like our products and services, please help us by posting your review here.

swapna@06
Posts: 2
Joined: Thu Jun 05, 2014 8:58 pm
Contact:

Re: About Question enthuware.ocajp.i.v7.2.1244 :

Post by swapna@06 »

admin wrote:The cast at line 2 is needed means you need the cast to be able to assign a to b. i.e. b = a; will not work. You need to add the cast i.e. b = (B[]) a;

HTH,
Paul.
Oh yeah, i got it. I was seeing the whole statement every time i read cast at line 2 is needed.
Thanks Paul.

German
Posts: 5
Joined: Thu Apr 02, 2015 4:28 am
Contact:

Re: About Question enthuware.ocajp.i.v7.2.1244 :

Post by German »

Hi,

looks like 4th answer is correct as well - "The program will compile and run if the (B[ ] ) cast in the line 2 and the whole line 3 is removed." If yes, how to determine in such questions what option should be selected?

admin
Site Admin
Posts: 10053
Joined: Fri Sep 10, 2010 9:26 pm
Contact:

Re: About Question enthuware.ocajp.i.v7.2.1244 :

Post by admin »

Did you read the explanation? It explains exactly why the cast at line //2 is needed.
If you like our products and services, please help us by posting your review here.

German
Posts: 5
Joined: Thu Apr 02, 2015 4:28 am
Contact:

Re: About Question enthuware.ocajp.i.v7.2.1244 :

Post by German »

Yes, I read the explanation, it's clear, no questions here.
There was another question, - "if the cast at line //2" is correct statement from the first part of 4th answer, then the second part of 4th answer is "if the whole line 3 is removed" which is also looks like correct. Thus, 4th answer fit for this question as well as 3 and 5 or not?

admin
Site Admin
Posts: 10053
Joined: Fri Sep 10, 2010 9:26 pm
Contact:

Re: About Question enthuware.ocajp.i.v7.2.1244 :

Post by admin »

May be I am not able to understand your question. Cast at //2 is required. You can't remove that cast. So "if the cast at line //2 is removed" is not correct. No matter what you do with //3.
If you like our products and services, please help us by posting your review here.

German
Posts: 5
Joined: Thu Apr 02, 2015 4:28 am
Contact:

Re: About Question enthuware.ocajp.i.v7.2.1244 :

Post by German »

Sorry for delay,

looks like I didn't understand correctly option 4, in particular, that "is removed" applied to both "the whole line 3" and "Cast at //2". I thought "is removed" applied to "the whole line 3" only and didn't to "Cast at //2". :)

lenalena
Posts: 56
Joined: Tue Feb 21, 2017 4:24 pm
Contact:

Re: About Question enthuware.ocajp.i.v7.2.1244 :

Post by lenalena »

Just to confirm, is it true that any super class (class that's higher in the hierarchy) can be cast to any subclass and pass compilation (with ClassCastException potentially at runtime)? Or are there cases where a super to subclass cast will throw a compile time error?

admin
Site Admin
Posts: 10053
Joined: Fri Sep 10, 2010 9:26 pm
Contact:

Re: About Question enthuware.ocajp.i.v7.2.1244 :

Post by admin »

lenalena wrote:Just to confirm, is it true that any super class (class that's higher in the hierarchy) can be cast to any subclass and pass compilation (with ClassCastException potentially at runtime)?
Yes, that is correct.
Or are there cases where a super to subclass cast will throw a compile time error?
Nope. Never.

Just keep in mind that it is not the object that you cast. Objects don't change their types. They remain what they are. It is the reference variables that you cast. You change the type of a reference variable when you cast it to another type. For example, SubKlass sk = (Subclass) k; Here, you are temporarily changing the type of k from Klass to SubKlass and assigning it to sk. The actual object pointed to by k will remain whatever type it was before.

HTH,
Paul.
If you like our products and services, please help us by posting your review here.

lenalena
Posts: 56
Joined: Tue Feb 21, 2017 4:24 pm
Contact:

Re: About Question enthuware.ocajp.i.v7.2.1244 :

Post by lenalena »

admin wrote:
lenalena wrote:Just to confirm, is it true that any super class (class that's higher in the hierarchy) can be cast to any subclass and pass compilation (with ClassCastException potentially at runtime)?
Yes, that is correct.
Or are there cases where a super to subclass cast will throw a compile time error?
Nope. Never.

Just keep in mind that it is not the object that you cast. Objects don't change their types. They remain what they are. It is the reference variables that you cast. You change the type of a reference variable when you cast it to another type. For example, SubKlass sk = (Subclass) k; Here, you are temporarily changing the type of k from Klass to SubKlass and assigning it to sk. The actual object pointed to by k will remain whatever type it was before.

HTH,
Paul.
It's clear now, thank you.

Javier
Posts: 66
Joined: Mon Feb 20, 2017 12:31 pm
Contact:

Re: About Question enthuware.ocajp.i.v7.2.1244 :

Post by Javier »

Hi Admin!

I want to ask just one question:

a1=a; // the reference a1 now is pointing to the a object, right?
a=b;// the reference a now is pointing to the b object, right?

I would like to know after these to statements, why is not pointing a1 to the b object??
Why is there not conexion between a1 and b??

It is just because the references are pointing to objects and not to other references??

Thank you so much!!

admin
Site Admin
Posts: 10053
Joined: Fri Sep 10, 2010 9:26 pm
Contact:

Re: About Question enthuware.ocajp.i.v7.2.1244 :

Post by admin »

You have a fundamental problem in your understanding. a, a1, and b are not objects. They are references pointing to objects. (References don't point to other references. A reference can only point to an object or nothing i.e. null).

It's like this - let's say you have a TV (call it, TV1) and a remote (call it, a) that is pointing to that TV. The TV is the object and the remote is a reference pointing to that object.

You now buy another remote (a1) and set this remote to point to the same TV as your previous remote by doing a1 = a. Now you have two remotes pointing to the same TV i.e. TV1.

Now, you change your first remote(a) to point to another TV (TV2) that is pointed to by some other remote b by doing a = b. So now, you have remote b as well as remote a pointing to TV2.

But what happens to the remote a1? Nothing. The second remote will still be pointing to the same TV1 that it was set to point to earlier. Setting a to point to another remote doesn't affect what b is pointing to.
If you like our products and services, please help us by posting your review here.

Sergey
Posts: 39
Joined: Sat Jul 29, 2017 1:04 pm
Contact:

Re: About Question enthuware.ocajp.i.v7.2.1244 :

Post by Sergey »

it seems it might be helpful to you if you read about the difference between the type of a variable and the type of the object pointed to by a variable.
A a = new B();
A - type of a variable
B - type of the object

Am i correct?

admin
Site Admin
Posts: 10053
Joined: Fri Sep 10, 2010 9:26 pm
Contact:

Re: About Question enthuware.ocajp.i.v7.2.1244 :

Post by admin »

Sergey wrote:
it seems it might be helpful to you if you read about the difference between the type of a variable and the type of the object pointed to by a variable.
A a = new B();
A - type of a variable
B - type of the object

Am i correct?
Correct.
If you like our products and services, please help us by posting your review here.

crazymind
Posts: 85
Joined: Mon Dec 24, 2018 6:24 pm
Contact:

Re: About Question enthuware.ocajp.i.v7.2.1244 :

Post by crazymind »

a1 fails at run time since a1 hold an instance of A not B ? but a hold an instance of B therefore it is valid.

Dreamweaver
Posts: 32
Joined: Mon Dec 29, 2014 4:14 pm
Contact:

Re: About Question enthuware.ocajp.i.v7.2.1244 :

Post by Dreamweaver »

can it be corrected like this? (I try it and run)

The line //1 will be allowed during compilation, since assignment is done from a subclass reference to a superclass reference.

The line //1 will be allowed during compilation and run time, since assignment is done from a subclass reference to a superclass reference.

admin
Site Admin
Posts: 10053
Joined: Fri Sep 10, 2010 9:26 pm
Contact:

Re: About Question enthuware.ocajp.i.v7.2.1244 :

Post by admin »

Yes, it will work even at run time.
If you like our products and services, please help us by posting your review here.

Post Reply

Who is online

Users browsing this forum: No registered users and 72 guests