不明白为什么输入phone.call();就可以运行出新属性int var;的两个默认赋值结果;
package com.imooc;
public class Initail {
public static void main(String[] args) {
// TODO Auto-generated method stub
Telphone phone=new Telphone();
phone.sendMessage();
//给实例变量赋值
phone.screen=5.0f;
phone.cpu=1.4f;
phone.mem=2.0f;
//调用对象名的使用方法
phone.sendMessage();
phone.call();
}
}