Let's say we have a class name Home. What is the difference between Home.this and Home.class? What do they refer to?
|
|
|
Home.this
The formal term for this expression appears to be the Qualified this, as referenced in Section 15.8.4 of the Java Language Specification. In a simple class, saying For example:
Home.class
The formal term for this expression is the class literal, as referenced in Section 15.8.2 of the Java Language Specification. In most cases, this expression is used when one is using reflection, and needs a way to refer to the class itself rather than an instance of the class. |
|||||
|
|
|
|
|||
|
|