设计五个类(测试类、计算机类、手机类、充电器类、U盘类)
时间: 2023-11-06 11:04:50 浏览: 66
数字电路设计(包含五项电路设计)
1. 测试类(Test Class)
属性:testName(String)、testResult(String)
方法:runTest()、displayResult()
2. 计算机类(Computer Class)
属性:brand(String)、model(String)、price(double)、CPU(String)、RAM(int)、storage(int)
方法:turnOn()、turnOff()、bootUp()、shutDown()
3. 手机类(Phone Class)
属性:brand(String)、model(String)、price(double)、OS(String)、screenSize(double)、batteryCapacity(int)
方法:makeCall(String phoneNumber)、sendText(String phoneNumber, String message)、takePhoto()、recordVideo()
4. 充电器类(Charger Class)
属性:compatibleDevice(String)、outputVoltage(double)、outputCurrent(double)、price(double)
方法:charge()、stopCharge()
5. U盘类(USB Class)
属性:brand(String)、model(String)、capacity(double)、price(double)、interfaceType(String)
方法:transferData()、format()、encrypt()
阅读全文