对象内存分析

/*
定义一个类,用来模拟“手机”事物。
属性:品牌,价格,颜色
行为:打电话,发短信

对应到类中:
成员变量(属性):
    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 setMessage(){
        System.out.println("群发短信");
    }
}
import demo01.Student;

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 = 88829.0;
        one.color ="黑色";
        System.out.println(one.brand);//苹果
        System.out.println(one.price);//888829
        System.out.println(one.color);//黑色
        System.out.println("========");

        one.call("陈述山");//给陈术山打电话
        one.setMessage();//群发消息
        System.out.println("========");

        Student   two = new Student();
         two.name="陈述山";
        System.out.println(two.name);
    }
}

 

内存分析

 

 

 

 

 

 


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值