I have an object of a subclass extending its superclass. There is an overridden method in subclass which can be called using the object. Is that possible to call the superc
Instead of:
System.out.println("Subclass go");
Write
super.go();
(Or, you know, just don't implement that method ...).