You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
399 B
19 lines
399 B
/**
|
|
* 电脑:使用USB设备
|
|
*/
|
|
public class Computer {
|
|
|
|
/**
|
|
* 使用USB设备
|
|
* @param usb USB设备实例
|
|
*/
|
|
public void useUSB(USB usb) {
|
|
if (usb == null) {
|
|
System.out.println("USB设备为空,无法使用。");
|
|
return;
|
|
}
|
|
usb.open();
|
|
System.out.println("使用USB设备中...");
|
|
usb.close();
|
|
}
|
|
}
|