class Phone
{ private String brand;
private int price;
private String color;
public String getBrand()
{
return brand;
}
public void setBrand(String brand){
this.brand=brand;
}
public int getPrice(){
return price;
}
public void setPrice()
{
this.price=price;
}
public String geColor(){
return color;
}
public void setColor(String color){
this.color=color;
}
}
class PhoneDemo
{
public static void main(String[] args){
Phone s = new Phone () ;
System.out.println(s.getBrand()+"----------"+s.getColor()+"--------"+s.getPrice());
}
}
|
|