• 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

K & B-Self test Ch 03 question no $

 
Ranch Hand
Posts: 69
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

What is the result?
A. hi
B. hi hi
C. hi hi hi
D. Compilation fails
E. hi, followed by an exception
F. hi hi, followed by an exception

The answer given is F.
Line1 is Executed an object is created.
Line2 is executed m2 is passed to m and not m1 and m2 are pointing to same object.
Line3 Hi gets printed
Line4 points m3.m1 what is the meaning of this?? is this means m1 instance variable of m3 object which means the instance variable in m2(since both m1 and m2 are pointing the same object)???
Line6 points m2.m1 what does this mean?
?
anyone help me out this mess..i surfed many posts posted before but i didnt get the point..
thanks in advance
 
Ranch Hand
Posts: 583
Firefox Browser Notepad Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Use search option to quickly get answers like this.
reply
    Bookmark Topic Watch Topic
  • New Topic