We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
importjava.io.*;importjava.util.*;classCycle{privateStringtechnology="pedals";voidmyFunc(){System.out.println("My ancestor is a cycle who is a vehicle with "+technology+".");}}classMotorcycleextendsCycle{privateStringtechnology="engine";voidmyFunc(){System.out.println("Hello I am a motorcycle, I am a cycle with an "+technology+".");}voiddisplayInfo(){myFunc();super.myFunc();}}publicclassSolution{publicstaticvoidmain(String[]args){Motorcyclehonda=newMotorcycle();honda.displayInfo();}}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Java Method Overriding 2 (Super Keyword)
You are viewing a single comment's thread. Return to all comments →