java如何调用另一个类的方法

807
2023/8/11 5:22:17
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

要调用另一个类的方法,首先需要实例化该类的对象,然后通过该对象调用方法。

例如,有一个名为"AnotherClass"的类,其中有一个名为"anotherMethod"的方法。

public class AnotherClass {
public void anotherMethod() {
System.out.println("调用了AnotherClass类中的anotherMethod方法");
}
}

在另一个类中,可以通过以下步骤调用"AnotherClass"类的"anotherMethod"方法:

  1. 导入"AnotherClass"类所在的包(如果在同一个包中则无需导入)。

  2. 实例化"AnotherClass"类的对象。

AnotherClass object = new AnotherClass();
  1. 通过对象调用"anotherMethod"方法。
object.anotherMethod();

完整的示例代码如下:

import 包名.AnotherClass;
public class Main {
public static void main(String[] args) {
AnotherClass object = new AnotherClass();
object.anotherMethod();
}
}

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

推荐阅读: java中bufferedimage的作用是什么