RE: Explicit type casting.

1999-11-03 Thread Jari . P . Kinnunen
BYASACHI S GUPTA > [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, November 03, 1999 11:41 AM > To: [EMAIL PROTECTED] > Subject: Explicit type casting. > > > > I have 3 files to test this. > > //A.java > public class A { > public voi

Re: Explicit type casting.

1999-11-03 Thread Michael Sinz
On Wed, 3 Nov 1999 15:11:16 +0530 (IST), SABYASACHI S GUPTA wrote: > >I have 3 files to test this. > >//A.java >public class A { > public void method(){ > System.out.println("In A"); > } >} > > >//B.java >public class B extends A { > > public void method() >

Explicit type casting.

1999-11-03 Thread SABYASACHI S GUPTA
I have 3 files to test this. //A.java public class A { public void method(){ System.out.println("In A"); } } //B.java public class B extends A { public void method() { System.out.println("hello world"); } } //mymain.java