1. 程式人生 > >編寫一個手機類(Mobile),包括手機品牌(brand)、手機型號(type), 方法包括顯示手機資訊,並編寫測試類進行物件的建立

編寫一個手機類(Mobile),包括手機品牌(brand)、手機型號(type), 方法包括顯示手機資訊,並編寫測試類進行物件的建立

/*編寫一個手機類(Mobile),包括手機品牌(brand)、手機型號(type),
 * 方法包括顯示手機資訊,並編寫測試類進行物件的建立*/
package cyff;


public class Mobile {// 定義Mobile類
String brand, type;// 成員變數


public void information() {// 成員方法
System.out.println(type);
}


public static void main(String[] args) {


Mobile P1 = new Mobile();// 宣告並建立物件
P1.brand = "華為";// 給P1的屬性賦值
P1.type = "華為7i";

Mobile P2 = new Mobile();// 宣告並建立物件
P2.type = "華為";// 給P2的屬性賦值
P1.information();
P2.information();
}


// TODO 自動生成的方法存根