class Demo_Phone {
public static void main(String[] args) {
/* 属性:品牌(brand) ,价格(price)
行为:打电话(call),发信息(sendMessage),玩游戏(playGame)*/
//System.out.println("Hello World!");
Phone s = new Phone ();
s.brand = "苹果";
s.price = 1890;
System.out.println(s.brand+" ...."+s.price );
s.call () ;
s.sendMessage ();
s.playGame ();
}
}
class Phone {
String brand;
int price;
public void call () {
System.out.println("打电话");
}
public void sendMessage () {
System.out.println("发信息");
}
public void playGame () {
System.out.println("玩游戏");
}
} |