对于super,
《The Java Programming Language》上这样说:
In field access and method invocation, super acts as a reference to the current object as an instance of its superclass.
这里面super acts as a reference ,说super 只是acts as,但不是reference。如果不是引用是什么?
对于this.
JLS上这样说:
When used as a primary expression,
the keyword this denotes a value that is a reference to the object for which the instance method was invoked (§15.12),
or to the object being constructed.
这里说this is a reference。说this是一个reference。