[Solved] Can you return the super in Java/C#? (would it be useful if u could?) [closed]

Java does not allow you to use super as a value. You cannot return it. And you don’t need to return it, because you can reference the object with this. In Java, an instance of class is represented by one object. The superclass is not represented by a separate object. Classes support inheritance of implementation … Read more