/**
* 定义冰箱类
*/
class Fridge {
//成员变量
String goods; //冰箱里的物品属性
boolean state; // 冰箱门的状态
//成员方法
void openDoor(){ //打开冰箱
System.out.println("冰箱门打开");
}
void closeDoor(){ //关闭冰箱
System.out.println("冰箱门关闭");
}
}
/**
* 定义大象类
*/
class Elephant {
//成员变量
String name;//大象的名字
long weight;//大象的体重
//成员方法
void walkFridge() { //走进冰箱
System.out.println("大象走进了冰箱");
}
}
/**
* 实现大象装进冰箱
*/
class Test {
public static void main(String[] args){
//创建Fridge类对象
Fridge fridge = new Fridge();
//创建Elephant类对象
Elephant elephant = new Elephant();
//冰箱调用开门方法
fridge.openDoor();
//大象调用走进冰箱方法
elephant.walkFridge();
//冰箱调用关门方法
fridge.closeDoor();
}
}
class Dog {
//成员属性
String breed;
int size;
String colour;
int age;
//成员方法
void eat() {
}
void run() {
}
void sleep(){
}
void name(){
}
}