I'm talking java language.
Variable "this", when used inside a class, refers to the current instance of that class, which means you cannot use "this" inside a static method.
But "super", when used inside a class, refers to the superclass of that class, not an instance of the superclass, which should mean that you can use "super" inside a static method. But it turns out you cannot.
A possible explanation would be to say that "super" also refers to an instance of the superclass, but I can't see why it should...
