在Java中,要調用其他類中的方法,需要先創建該類的對象,然后通過對象調用方法。
示例代碼如下:
// 其他類
public class OtherClass {
public void otherMethod() {
System.out.println("調用了其他類中的方法");
}
}
// 主類
public class MainClass {
public static void main(String[] args) {
// 創建OtherClass對象
OtherClass other = new OtherClass();
// 調用OtherClass對象的方法
other.otherMethod();
}
}
在示例中,首先定義了一個名為OtherClass
的類,其中包含了一個名為otherMethod
的方法。然后在主類MainClass
中,先創建了OtherClass
的對象other
,然后通過other
對象調用了otherMethod
方法,實現了對其他類中方法的調用。執行主類的main
方法后,會在控制臺輸出"調用了其他類中的方法"。