代碼如下: ...
代碼如下:
1 //作者:realjanushu 2 //日期:17/9/28 3 /*功能: 4 設計電腦類要求如下: 5 6 屬性:品牌、顏色、cpu型號,記憶體容量,硬碟大小,價格,工作狀態; 7 8 方法:打開,關閉,休眠; 9 10 創建一個電腦對象,調用打開、關閉方法 11 */ 12 public class ComputerDemo{ 13 public static void main(String[] args){ 14 Computer c1 = new Computer(); 15 c1.open(); 16 c1.sleep(); 17 } 18 } 19 class Computer{ 20 String brand;//品牌 21 String color;//顏色 22 String model;//型號 23 int memory;//記憶體 24 int hardDiskStorage;//硬碟存儲 25 String status;//工作狀態 26 Computer(){}//顯示聲明預設構造函數 27 //初始化變數 28 public Computer(String brand,String color,String model, 29 int memory,int hardDiskStorage,String status){ 30 //區分成員屬性與形參 31 this.brand = brand; 32 this.color = color; 33 this.model = model; 34 this.memory = memory; 35 this.hardDiskStorage = hardDiskStorage; 36 this.status = status; 37 } 38 //成員方法列印輸出 39 public void open(){ 40 System.out.println("打開電腦"); 41 } 42 public void shutdown(){ 43 System.out.println("關閉"); 44 } 45 public void sleep(){ 46 System.out.println("休眠"); 47 } 48 }