学习练习 java编写西游记人物类
Posted Clown
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了学习练习 java编写西游记人物类相关的知识,希望对你有一定的参考价值。
1 package com.hanqi; 2 3 public class XiYouJiRenWu { 4 5 double height; 6 7 String weapon; 8 9 String name; 10 11 void prinetname() 12 { 13 System.out.println(name); 14 } 15 16 void prinetweapon() 17 { 18 System.out.println("武器" + weapon); 19 } 20 21 public static void main (String[] args) 22 { 23 XiYouJiRenWu sw = new XiYouJiRenWu(); 24 sw.name=("孙悟空"); 25 sw.weapon=("如意金箍棒"); 26 System.out.println(sw.name+"使用的是"+sw.weapon); 27 sw.name=("猪八戒"); 28 sw.weapon=("九齿钉耙"); 29 System.out.println(sw.name+"使用的是"+sw.weapon); 30 31 } 32 33 }
‘
’
以上是关于学习练习 java编写西游记人物类的主要内容,如果未能解决你的问题,请参考以下文章
按要求编写Java应用程序: 编写西游记人物类(XiYouJiRenWu) 其中属性有:身高(height),名字(name),武器(weapon) 方法有:显示名字(printName),显示