1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| public class Main { public static void main(String[] args) { Phone one = new Phone(); one.brand = "苹果"; one.price = 8388.0; one.color = "黑色";
method(one);
} public static void method(Phone param){ System.out.println(param.brand); System.out.println(param.price); System.out.println(param.color); } }
|