• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Casting - Confusion

 
Greenhorn
Posts: 27
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi everyone,

I got this question in a Mock Exam.
class ApBase extends Object implements Runnable.
1. Apbase aBase = new ApBase();
2. Runnable aR = aBase;
3. Object obj = aR;
4. Apbase x = (Apbase)obj;
What will happen when we try to compile and run?
a. Compiler objects to line 2.
b. Compiler objects to line 3.
c.Code compiles but when run , throws ClassCastException in line 4.
d. Compiles and runs fine.
My answer is c.
Author answer is d.
If you go by Simon Roberts Complete Java2 Certification book,
page no 118.
Newtype nt;
Oldtype ot;
nt = (New type)ot.
Run time casting rule is
If New type is a class, the class of the expression being converted must be Newtype or must inherit fron Newtype.
okay.
In our case
4. Apbase x = (Apbase)obj;
class of expression is object which is neither the same class of x or subclass of x.

Any thought is appreciated.

------------------
 
Ranch Hand
Posts: 1467
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Supree,
Newtype nt;
Oldtype ot;
nt = (New type)ot.
Apbase x = (Apbase)obj;
This is the case of nt->non-final class lt ->non-final class
The compile time rules for object ref casting is
Oldtype must extend Newtype or vice versa
Here Apbase is subclass of class Object. So it is right.
I think you are referring to the other table The rules for object reference assignment conversion
regds
maha anna
 
Supree
Greenhorn
Posts: 27
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Mahanama,
Compile time is okay. but will die in run time. right.
Pl refer run time casting rules in Simon Robert's book.
thanks
 
maha anna
Ranch Hand
Posts: 1467
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
class ApBase extends Object implements Runnable.
1. Apbase aBase = new ApBase();
2. Runnable aR = aBase;
3. Object obj = aR;
4. Apbase x = (Apbase)obj;
//First your code has some typos. Ignoring that.. I am continuing
See carefully. At line 4 we are converting the obj ref to ApBase class. Here obj = aR which is = aBase which is = new ApBase();
So finally obj is actually referring to an object of type ApBase.
So at runtime NO ERROR will occur.
regds
maha anna
 
To do a great right, do a little wrong - shakepeare. twisted little ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic