/*
作业:把手机类写成一个标准类,然后创建测试对象
手机类:
成员变量:
品牌 brand
价格 price
颜色 color
*/
class phone{
//品牌
private String brand;
//价格
private int price;
//颜色
private String color;
//品牌的获取
public void getbrand(String brand){
this.brand = brand;
}
//品牌的输出
public String putbrand(){
return brand;
}
//价格的获取
public void getprice(int price){
this.price = price;
}
//价格的输出
public int putprice(){
return price;
}
//颜色的获取
public void getcolor(String color){
this.color = color;
}
//颜色的输出
public String putcolor(){
return color;
}
}
class phoneDome{
public static void main(String[] args){
//创建对象
phone s = new phone();
//赋值
s.getbrand("oppoe");
s.getprice(4000);
s.getcolor("土豪金");
//输出
System.out.println("品牌"+s.putbrand());
System.out.println("价格"+s.putprice());
System.out.println("颜色"+s.putcolor());
}
}
Java类和对象例题,代码解析
最新推荐文章于 2022-04-03 19:43:13 发布