“ this”关键字的用途是什么?

时间:2019-12-25 03:02:59

标签: java class methods this

如果我们有课

class MyClass {
    void method1() {
        // Code
    }

    void method2() {
        method1();
    }
}

method2()会调用method1(),对此我很满意。使用“ this”关键字,我们有

class MyClass {
    void method1() {
        // Code
    }

    void method2() {
        this.method1();
    }
}

不是同一回事吗?我需要在这里使用“ this”关键字吗?

注意:我目前正在编写有关Java的教程,我很困惑。因此,请将我视为绝对初学者。

0 个答案:

没有答案