1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| public class Main2 { public static void main(String[] args) { Phone two = getPhone(); System.out.println(two.brand); System.out.println(two.price); System.out.println(two.color); } public static Phone getPhone(){ Phone one = new Phone();
one.brand = "苹果"; one.price = 8388.0; one.color = "玫瑰金"; return one; } }
|