| Author |
fwd or backward ,don't know which reference??
|
R K Singh
Ranch Hand
Joined: Oct 15, 2001
Posts: 5369
|
|
I am not able to get why at LINE01 member variable of class B is not being assigned null ? 2. is it possible for object obj1 to be accesible from object obj2 and object obj2 to be accesible form obj1 ?? TIA [ January 22, 2002: Message edited by: ravish kumar ] [ January 22, 2002: Message edited by: ravish kumar ]
|
"Thanks to Indian media who has over the period of time swiped out intellectual taste from mass Indian population." - Chetan Parekh
|
 |
Dave Vick
Ranch Hand
Joined: May 10, 2001
Posts: 3244
|
|
Ravish At LINE 01 the member variable is being assigned null. Actually you dont get a reference to the object that is created so you cant even test it anyway. You're creating a B object in the creation expression for a1 so you are just passing a value of null to the constructor - you have no reference to the B object created except through the the A1 objects bb member. But you're still creating a valid B object even though one of its members has a value of null. Look at this code here with comments exlaining what is happening (I commented out the toString methods so you can see that they are different objects being created): hope that helps
|
Dave
|
 |
R K Singh
Ranch Hand
Joined: Oct 15, 2001
Posts: 5369
|
|
Hi Dave .. Thanks a lot .. now things are clear to me .... [ January 22, 2002: Message edited by: ravish kumar ]
|
 |
 |
|
|
subject: fwd or backward ,don't know which reference??
|
|
|