第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

為什么我的方法在主要方法中沒有被檢測到?

為什么我的方法在主要方法中沒有被檢測到?

慕碼人2483693 2022-11-10 15:11:28
我只是在測試一些繼承,但似乎我的方法沒有被調(diào)用,甚至沒有被 main 方法看到。它編譯,但只是說文件中沒有檢測到方法。我的代碼有什么問題?public class monkey{    public void main(String[] args){          Fruit jeff = new Fruit("ree");          Fruit mike = new Apple("ree");          jeff.talk();          mike.talk();    }class Fruit {     String sound;    public Fruit(String s) {       sound = s;    }     public void talk(){      System.out.print(sound);    }} class Apple extends Fruit {    public Apple(String s){      super(s);   }}}
查看完整描述

1 回答

?
蝴蝶不菲

TA貢獻1810條經(jīng)驗 獲得超4個贊

  • 將靜態(tài)放在主要方法簽名中。

  • 創(chuàng)建靜態(tài)內(nèi)部類,因為您想在靜態(tài) main 方法中訪問這些類。

正確代碼:

public class monkey {

    public static void main(String[] args) {

        Fruit jeff = new Fruit("ree");

        Fruit mike = new Apple("ree");


        jeff.talk();

        mike.talk();

    }


    static class  Fruit {

        String sound;


        public Fruit(String s) {

            sound = s;

        }


        public void talk() {

            System.out.print(sound);

        }

    }


    static class Apple extends Fruit {

        public Apple(String s) {

            super(s);

        }

    }

}


查看完整回答
反對 回復(fù) 2022-11-10
  • 1 回答
  • 0 關(guān)注
  • 103 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號