package TelP;
public class TelPhone {
//手机001
public class Telp1{
public int[] withH1= {600,800};
public float cpu1=1.4f;
public float ram1=2.0f;
}
//手机002
public class Telp2{
public int[] withH2= {600,800};
public float cpu2=1.4f;
public float ram2=2.0f;
}
public static void main(String[] args) {
// TODO Auto-generated method stub
TelPhone te = new TelPhone();
Telp1 te1=te.new Telp1();
Telp2 te2=te.new Telp2();
if(te1.equals(te2))
System.out.println("手机配置相同");
else
System.out.println("手机配置不同");
}
}