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