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
One way would be to make the subclass call teh super classes implementation. But I'm assuming thats not what you want?
class SubClass extends SomeClass { SubClass() {} @Override public void go() { super.go } }