this 关键字是一个引用,指向正在执行的对象。主要用途包括:访问实例变量和方法。构造器中引用其他构造器。内部类中访问外部类。嵌套类中访问嵌套类自己。匿名内部类中访问外部类。
Java 中 this 关键字的用法
什么是 this 关键字?
this 关键字是一个引用,它指向正在执行的对象。
this 关键字的用途
this 关键字主要用于以下目的:
this 关键字的示例
<code class="java">class Person { private String name; public Person(String name) { this.name = name; } public String getName() { return this.name; } }</code>
在这个示例中:
this 关键字的注意事项
Das obige ist der detaillierte Inhalt vonVerwendung davon in Java. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!