“`” this关键字用于引用类的当前实例。 例如:
<pre><code>class Manager { Employees[] employees;void manageEmployees() { int totalEmp = this.employees.length; System.out.println(""Total employees: "" + totalEmp); this.report();}void report() { }} </code></pre>
<br>
在上面的示例中,this关键字用于两个地方:
<ul><li>this.employees.length:访问类Manager的当前实例的变量。</li><li>this.report():调用类Manager的当前实例的方法。</li></ul>
此关键字是可选的,这意味着如果上面的示例在不使用此关键字的情况下表现相同。 但是,使用此关键字可能会使代码更易读或易懂。
<pre><code> "“`
Was this helpful?
0 /
0