1 Question
Simulate the function of USB interface
We often use USB interface when using computers. Mouse, keyboard, etc. are all devices with USB interface. We only need to connect the mouse, These peripherals with USB interface can be used normally by plugging the keyboard into the USB interface of the computer.
Through the interface-oriented programming design concept of JAVA program, the process of using the USB interface to drive the mouse and keyboard is simulated.
Requirements:
① Define the USB interface, which has the turnOn() method to start the USB device, and the turnOff() method to close the device;
② Define the Mouse, KeyBoard, and MicroPhone microphone The class implements the USB interface;
③ Define the computer class
powerOn() to turn on the computer, all USB devices need to be loaded before starting;
powerOff() to shut down, all the USB devices need to be ejected before turning off the computer.
Note: The mouse and other devices do not need to be plugged in when the computer is turned on
2 Idea analysis
2.1 Write an interface USB, which contains the turnOn method and the turnOff method
2.2 Write the Mouse (mouse), KeyBoard (keyboard), and MicroPhone (microphone) classes to implement the USB interface
2.3 Rewrite turnOn and turnOff to print the corresponding object information
2.4 The Computer class establishes an interface Array, used to store the instantiated objects of each subclass that implements the interface
2.5 Create a single-time addition device method addUSB (USB usb) in the Computer class, so that each time this method is called, the computer A device will be plugged in where the interface array object is not null
2.6 PowerOn in Computer traverses all USB interfaces. If the interface object is not null, the overridden turnOn method of the device is called. , when all are traversed, it will print that the computer started successfully.
2.7 PowerOff in Computer traverses all USB interfaces. If the interface object is not null, the overridden turnOff method of the device is called, and then the interface object is assigned null. When the traversal is completed All will be printed after the computer shuts down successfully.
2.8 If there are no devices that need to be loaded or ejected before starting up or before shutting down, it will output that there are no devices that need to be loaded before starting up or there are no devices that need to be ejected before shutting down
3 Code Implementation
USB interface
package Work4; public interface USB { //接口里面的方法都是抽象方法,那个public abstract可以省略不写的!!! void turnOn(); void turnOff(); }
KeyBoard class
package Work4; public class KeyBoard implements USB{ private String name; public KeyBoard() { } public KeyBoard(String name) { this.name = name; } public String getName() { return name; } public void setName(String name) { this.name = name; } @Override public void turnOn() { System.out.println(name+"键盘加载了"); } @Override public void turnOff() { System.out.println(name+"键盘弹出了"); } }
MicroPhone class
package Work4; public class MicroPhone implements USB{ private String name; public MicroPhone() { } public MicroPhone(String name) { this.name = name; } public String getName() { return name; } public void setName(String name) { this.name = name; } @Override public void turnOn() { System.out.println(name+"麦克风加载了"); } @Override public void turnOff() { System.out.println(name+"麦克风弹出了"); } }
Mouse class
package Work4; public class Mouse implements USB{ private String name; public Mouse() { } public Mouse(String name) { this.name = name; } public String getName() { return name; } public void setName(String name) { this.name = name; } @Override public void turnOn() { System.out.println(name+"鼠标加载了"); } @Override public void turnOff() { System.out.println(name+"鼠标弹出了"); } }
Computer class
package Work4; public class Computer { //弄一个USB接口,里面的默认都为null private USB[] usbs=new USB[4]; public Computer() { } //每次只能增加一个设备 public void addUSB(USB usb){ for (int i = 0; i <usbs.length; i++) { //如果为空,则代表可以插入设备,否则就插入不了的 if(usbs[i]==null){ usbs[i]=usb; break; } } } public void powerOn(){ boolean flag=false; //判断是否插入了设备,只要有就为false for (int i = 0; i <usbs.length; i++) { if(usbs[i]!=null){ //如果USB接口不为空,则代表有设备,需要启动的 usbs[i].turnOn(); flag=true; } } if(!flag){ System.out.println("开机前没有需要加载的设备"); } System.out.println("开机成功!!!!"); } public void powerOff(){ boolean flag=false; //判断是否还有设备没有设备被弹出,只要有就为false for (int i = 0; i <usbs.length; i++) { if(usbs[i]!=null){ //如果USB接口不为空,则代表有设备,关机前需要弹出这些设备的 usbs[i].turnOff(); usbs[i]=null; flag=true; //弹出设备后,对应的接口上面就没有东西了,理应设置为null } } if(!flag){ System.out.println("关机前没有需要弹出的设备"); } System.out.println("关机成功!!!!"); } }
TestComputer
package Work4; public class TestComputer { public static void main(String[] args) { Computer c=new Computer(); c.addUSB(new Mouse("罗技")); c.addUSB(new KeyBoard("双飞燕")); c.addUSB(new MicroPhone("铁三角")); c.powerOn(); c.powerOff(); //没有插入设备时测试 c.powerOn(); c.powerOff(); } }
4 Code running screenshot
The above is the detailed content of How to implement the function of simulating USB interface in java. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 Chinese version
Chinese version, very easy to use

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6
Visual web development tools
