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
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()
>
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