BASIC 2 HIFI PROGRAM ...
ALL HERE

Monday, 22 December 2014

OVERRIDING PROGRAM

class animal{
String food;
void makeNoise()
{
System.out.println("tin tin");
}
}

class lion extends animal {
void makenoise()
{
System.out.println("wer wer");
}
}

public class overriding {
public static void main(String[] args)
{
lion shera=new lion();
shera.makenoise();
}
}

No comments:

Post a Comment