Hi dave,
I have one tricky question here. I scratched my head but don't get answer of it.
Its a question of OOPS.
I have a three classes A, B and C and their members a,b and c respectively.
Now i want to use members of this classes in another class D. Where first i declare instances of the above classes. Now I want to create objects in following fashion:
A= new(B.b);
B= new(C.c);
C= new(A.a);
It gives an error because in 1st statement B is not created yet and same for the second.......
So how can i pass the argument of another class' member.
:confused:
dreku