How to call the m1() method of Base class in below snippet ?
class Base
{
public void m1()
{
System.out.println("Base m1 ");
}
public void m2()
{
System.out.println("Base m1 ");
}
}
======================
class Derived extends Base
{
public void m1()
{
System.out.println("Derived m1");
}
public void m3()
{
System.out.println("Derived m3");
}
public static void main(String[] args)
{
Base ob=new Derived();
ob.m1();
//System.out.println("Hello
World!"+ob.m1());
}
}
Answers were Sorted based on User's Feedback
Answer / mitu
class Derived extends Base
{
public void m1()
{
System.out.println("Derived m1");
}
public void m3()
{
System.out.println("Derived m3");
}
public void m26()
{
super.m1();
}
public static void main(String[] args)
{
Derived ob=new Derived();
ob.m1();
ob.m26();
}
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / kishore
Nand asking in the about snippet is saying like: The base class is referenced to derived class object (i.e Polymorphism). As a polymorphism point of view only overidden methods of Derived class will be called. But how is it possible to access the m1() of Base class using the reference of Base Class ?
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / surendra
in main() create an object to derived class and call m1() by using this obj since all super class members are available to
subclass object.
Derived d=new Derived();
d.m1();
| Is This Answer Correct ? | 1 Yes | 2 No |
What is difference between Application Server and Web Server?
httt method
what is java virtual machine
what is the difference between through and throws?
who will give req's to u?. how they send req's to u? . what design documents contains?. when bugs raised on other developer code how to report to them?.(throgh mail or ........). how to retrive 100 recods from dao layer to presentation layer.using which collection?. what is sequence diagram.?.
What is the Spring2.5 MVC Navigation flow?
What are the main classes of the list interfaces? : java collections
please mail me the interview question based on java/j2ee
Which server-side script takes the input from JavaScript, can access the database if it needs to, and processes the data.
what debugging tool that can be used to debug the java programs?
What are the differences between the java collection and the java list? : java collections
How do you create UserTransaction Object? How do you rollback a transaction in a method?