要調(diào)用另一個(gè)類的方法,首先需要實(shí)例化該類的對(duì)象,然后通過該對(duì)象調(diào)用方法。
例如,有一個(gè)名為"AnotherClass"的類,其中有一個(gè)名為"anotherMethod"的方法。
public class AnotherClass {
public void anotherMethod() {
System.out.println("調(diào)用了AnotherClass類中的anotherMethod方法");
}
}
在另一個(gè)類中,可以通過以下步驟調(diào)用"AnotherClass"類的"anotherMethod"方法:
導(dǎo)入"AnotherClass"類所在的包(如果在同一個(gè)包中則無需導(dǎo)入)。
實(shí)例化"AnotherClass"類的對(duì)象。
AnotherClass object = new AnotherClass();
object.anotherMethod();
完整的示例代碼如下:
import 包名.AnotherClass;
public class Main {
public static void main(String[] args) {
AnotherClass object = new AnotherClass();
object.anotherMethod();
}
}