当前位置 : 主页 > 编程语言 > c++ >

15Java基础练习--面向对象

来源:互联网 收集:自由互联 发布时间:2021-07-03
6.按要求编写Java应用程序: (1)定义西游记人物类,有属性:名字、身高和武器, 有构造方法初始化属性,还有输出人物详细信息的方法。 (2)在主类的main方法中创建两个西游记
6.按要求编写Java应用程序: (1)定义西游记人物类,有属性:名字、身高和武器, 有构造方法初始化属性,还有输出人物详细信息的方法。 (2)在主类的main方法中创建两个西游记人物对象,分别调 用方法输出各自的详细信息。
public class Peoper {
String name;
int height;
String weapon;
public String getName() {
	return name;
}
public void setName(String name) {
	this.name = name;
}
public int getHeight() {
	return height;
}
public void setHeight(int height) {
	this.height = height;
}
public String getWeapon() {
	return weapon;
}
public void setWeapon(String weapon) {
	this.weapon = weapon;
}
public Peoper(String name, int height, String weapon) {
	super();
	this.name = name;
	this.height = height;
	this.weapon = weapon;
}

}
package gh;

public class text6 {
public static void main(String[] args) {
	Peoper sunwukong= new Peoper("孙悟空",165,"金箍棒");
	Peoper zhubajie=new Peoper("猪八戒",187,"耙子");
	System.out.println(sunwukong.getName()+" "+sunwukong.getHeight()+" "+sunwukong.getWeapon());	
	System.out.println(zhubajie.getName()+" "+	zhubajie.getHeight()+" "+zhubajie.getWeapon());
}
}
网友评论