在Java中,要調(diào)用其他類中的方法,需要先創(chuàng)建該類的對(duì)象,然后通過(guò)對(duì)象調(diào)用方法。
示例代碼如下:
// 其他類
public class OtherClass {
public void otherMethod() {
System.out.println("調(diào)用了其他類中的方法");
}
}
// 主類
public class MainClass {
public static void main(String[] args) {
// 創(chuàng)建OtherClass對(duì)象
OtherClass other = new OtherClass();
// 調(diào)用OtherClass對(duì)象的方法
other.otherMethod();
}
}
在示例中,首先定義了一個(gè)名為OtherClass
的類,其中包含了一個(gè)名為otherMethod
的方法。然后在主類MainClass
中,先創(chuàng)建了OtherClass
的對(duì)象other
,然后通過(guò)other
對(duì)象調(diào)用了otherMethod
方法,實(shí)現(xiàn)了對(duì)其他類中方法的調(diào)用。執(zhí)行主類的main
方法后,會(huì)在控制臺(tái)輸出"調(diào)用了其他類中的方法"。