Hi,
Suppose I have one class A which is defined inside another class B.
Class A has a function f and Class B also has a function f. How do I
call function f of B inside function f of A?
Thanks!
shakah - 08 Jun 2005 04:14 GMT
> Hi,
>
[quoted text clipped - 3 lines]
>
> Thanks!
I think it's either B.this.f() or B.f(), depending on the static'ness
of the situation.
eeh - 08 Jun 2005 05:27 GMT
The functions are not static.