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.

10 lines
294 B

// Computer.java
public class Computer {
public void useUSB(USB usbDevice) {
System.out.println("电脑检测到 USB 设备插入。");
usbDevice.open();
// 模拟使用过程
usbDevice.close();
System.out.println("USB 设备已移除。\n");
}
}