面向对象—西游人物
Posted 曦~妍
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面向对象—西游人物相关的知识,希望对你有一定的参考价值。
1 // 编写西游记人物类(XiYouJiRenWu)其中属性有: 2 // 身高(height),名字(name),武器(weapon) 3 // 方法有:显示名字(printName),显示武器(printWeapon) 4 String Name; 5 int Height; 6 String Weapon; 7 8 void printName(String Name) 9 { 10 System.out.println("名字:"+Name); 11 } 12 13 void printWeapon(String Weapon) 14 { 15 System.out.println(Name+"的武器是:"+Weapon); 16 }
1 Phone n1=new Phone(); 2 n1.Name="孙悟空"; 3 n1.Height=1; 4 n1.Weapon="如意金箍棒"; 5 n1.printName("孙悟空"); 6 n1.printWeapon("如意金箍棒"); 7 System.out.println(); 8 Phone n2=new Phone(); 9 n2.Name="猪八戒"; 10 n2.Height=2; 11 n2.Weapon="九齿钉耙"; 12 n2.printName("猪八戒"); 13 n2.printWeapon("九齿钉耙"); 14
以上是关于面向对象—西游人物的主要内容,如果未能解决你的问题,请参考以下文章