
How to access subclass in java? please tell me the syntex with an example.

class SuperClass{
public void hello(){
System.out.println("Hello World");
}
}
class SubClass extends SuperClass{
public void hello(){
super.hello();
System.out.println("Welcome");
}
}
class SubClassExample{
public static void main(String[] args)
{
SubClass c=new SubClass();
c.hello();
}
}
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.