What Will Be The Output Of The Following Java Codep Pre #912
What will be the output of the following Java code?</p> <pre><code class="language-java"> class Base { public void show() { System.out.println(this); } } class Derived extends Base { public void show() { System.out.println(this); } } public class PrintObject { public static void main(String[] args) { Base i = new Derived(); i.show(); } }</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs111 OOP Object Oriented Programming Java. It can also be found in gs gs111 Polymorphism (Using Java) - Method Overriding - Quiz No.2.
What will be the output of the following Java code?
class Base { public void show() { System.out.println(this); } } class Derived extends Base { public void show() { System.out.println(this); } } public class PrintObject { public static void main(String[] args) { Base i = new Derived(); i.show(); } }
this
Derived
Base@2a139a55
Derived@2a139a55