class DaXiang//打开冰箱 装进大象 关闭冰箱
{
//成员变量
int price; //价格
String color;//颜色
int weight;//体重
char sex;//性别
String name;//名字
public void open()
{
System.out.println("先打开冰箱");
}
public void in()
{
System.out.println("然后把体重"+this.weight+"吨的大象塞进冰箱");
}
public void close()
{
System.out.println("最后关上冰箱OK了!");
}
}
//白色 价值 10000 的冰箱 体重20吨 性别母 的大象
class DaXiangDemo
{
public static void main(String[] args)
{
//创建冰箱和大象的对象
DaXiang x = new DaXiang();//x是冰箱
DaXiang y = new DaXiang();//y是大象
//给成员变量赋值
x.price = 10000;
x.color = "白色";//白色的冰箱
x.name = "冰箱";
y.weight = 20;
y.sex = '母';
y.name = "大象";
System.out.println("价值"+x.price+"元"+x.color+"的"+x.name);
System.out.println("一头体重"+y.weight+"吨的"+y.sex+y.name);
x.open();
y.in();
x.close();
}
} |
|