對象練習,java物件導向練習題

來源:互聯網
上載者:User

對象練習,java物件導向練習題
(1)編寫西遊記人物類(XiYouJiRenWu)
其中屬性有:身高(height),名字(name),武器(weapon)
方法有:顯示名字(printName),顯示武器(printWeapon)
(2)在主類的main方法中建立二個對象:zhuBaJie,sunWuKong。並分別為他
們的兩個屬性(name,weapon)賦值,最後分別調用printName, printWeapon方法
顯示二個對象的屬性值。

 1     //建立類 2     String name;//名字 3     double heiht;//身高 4     String weapon;//武器 5      6     void printName() 7     { 8         System.out.print(name); 9     }10     void printWeapon()11     {12         System.out.println("姓名:"+name+", 武器:"+weapon);13     }
 1         xiyoujirenwulei renwu1=new xiyoujirenwulei(); 2         renwu1.name="孫悟空"; 3         renwu1.heiht=160; 4         renwu1.weapon="如意金箍棒"; 5          6          7         xiyoujirenwulei renwu2=new xiyoujirenwulei(); 8         renwu2.name="豬八戒"; 9         renwu2.heiht=155;10         renwu2.weapon="九齒釘耙";11         12         xiyoujirenwulei renwu3=new xiyoujirenwulei();13         renwu3.name="沙僧";14         renwu3.heiht=170;15         renwu3.weapon="降妖寶杖";16         17         xiyoujirenwulei renwu4=new xiyoujirenwulei();18         renwu4.name="唐僧";19         renwu4.heiht=180;20         renwu4.weapon="禪杖";21         22         renwu1.printWeapon();23         renwu2.printWeapon();24         renwu3.printWeapon();25         renwu4.printWeapon();

結果:

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.