java类怎么调用自己的方法

1323
2024/3/30 14:11:41
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在Java中,可以通过this关键字来调用当前对象的方法。this关键字代表当前对象的引用,可以在类的方法中使用它来调用当前对象的其他方法。例如:

public class MyClass {

    public void method1() {
        System.out.println("method1 is called");
    }

    public void method2() {
        System.out.println("method2 is called");
        
        // 调用当前对象的method1方法
        this.method1();
    }

    public static void main(String[] args) {
        MyClass myObject = new MyClass();
        myObject.method2();
    }
}

在上面的例子中,method2方法中使用this关键字调用了当前对象的method1方法。当main方法中调用myObject.method2()时,输出结果为:

method2 is called
method1 is called

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: Java中httpurlconnection怎么设置参数