/*
把大象装进冰箱:
对象:
大象:进去
冰箱:打开,关闭
*/
class Elephant//定义一个类,类名为Elephant
{
//分析大象的成员变量有:名字
String name ;
//分析大象的成员方法有:走进去
public void in ()
{
System.out.println("走进冰箱");
}
}
class Fridge
{//分析冰箱的成员变量为价格
int price;
//分析冰箱的成员方法有开门,关门
public void open()
{
System.out.println("冰箱开门");
}
public void close()
{
System.out.println("冰箱关门");
}
}
class Text1
{ public static void main (String []args)
{
Elephant e =new Elephant();
e.name="小甜心";
e.in();
Fridge f= new Fridge();
f.price=3000;
f.open();
f.close();
}
}
|
|