/*定义一个类,用来模拟“手机”事物
成员变量(属性)
String brand;//品牌
double price;//价格
String color;//颜色
成员方法(行为)
public void call(String who){}//打电话
public void sendMessage(){}//群发短信
*/
public class Phone{
//成员变量
String brand;//品牌
double price;//价格
String color;//颜色
//成员方法(行为)
public void call(String who){
System.out.println("给"+who+"打电话");
}
public void sendMessage(){
System.out.println("群发短信");
}
}
public class Demo01PhoneOne{
public static void main(String[] args){
//根据Phone类,创建一个名为one的对象
//格式:类名称 对象名=new 类名称();
Phone one=new Phone();
System.out.println(one.brand);//null
System.out.println(one.price);//0.0
System.out.println(one.color);//null
System.out.println("=============");
one.brand="苹果";
one.price=8388.0;
one.color="黑色";
System.out.println(one.brand);//苹果
System.out.println(one.price);//8388.0
System.out.println(one.color);//黑色
System.out.println("=============");
one.call("乔布斯");
one.sendMessage();
}
}
相关文章
- 01-05类实例化
- 01-05泛型(Generic)类的使用原因和使用方式
- 01-05随笔——安卓手机调试微信网页,x5错误页
- 01-05基础查询语句练习
- 01-05彻底删除手机系统软件
- 01-05oppo手机如何打开开发者选项
- 01-05SQL练习一--查找最晚入职员工的所有信息
- 01-05python-列表编程练习
- 01-05牛客在线编程练习:SQL61_较难
- 01-05聚类clustering