像自定义类型一样使用类
类就是一种自定义类型
1、在类定义中可以使用类,创建类的引用
2.在类定义中,甚至可以使用类自己的类创建引用
3.引用类型的缺省值是null.
public class Phone {
Screen screen;
Mainboard mainboard;
double price;
boolean hasFinguePrintUnlocker;
}
public class Screen {
double size;
String producer;
}
public class Mainboard {
CPU cpu;
Memory memory;
Storage storage;
String model;
int year;
}
public class CPU {
double speed;
String producer;
}
public class Memory {
long capacity;
String producer;
}
import java.util.Arrays;
public class PhoneMarker {
public static void main(String[] args){
Phone phone = new Phone();
phone.pri