/*
手机类
属性:品牌brand,价格price
行为:打电话call,发短信sendMessage,玩游戏,playGame
*/
class Demo_Phone1 {
public static void main(String[] args) {
Phone pm=new Phone(2999,"小米");
Phone p=new Phone();
p.setPrice(2809);
p.setBrand("三星");
System.out.println("这部手机的价格是:"+p.getPrice()+" 这部手机的品牌是:"+p.getBrand());
p.call();
p.sendMessage();
p.playGame();
}
}
class Phone { //建立phone类
private int price; //属性价格私有
private String brand; //属性品牌私有
public Phone(){} //创建空参
public Phone(int price,String brand){ //创建一个有有参方法
System.out.println("这部手机的价格是:"+price+" 这部手机的品牌是:"+brand);
}
public void setPrice(int price){ //设置价格
this.price=price;
}
public int getPrice(){ //获取价格
return price;
}
public void setBrand(String brand){ //设置品牌
this.brand=brand;
}
public String getBrand(){ //获取品牌
return brand;
}
public void call() { //创建方法
System.out.println("这部手机的功能1是可以打电话");
}
public void sendMessage(){
System.out.println("这部手机的功能2是可以发短信");
}
public void playGame(){
System.out.println("这部手机的功能3是可以玩游戏");
}
}
注: |
|