java如何調(diào)用其他類中的方法

小億
289
2024-01-04 03:41:08

在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)用了其他類中的方法"。

0