1. What is an interface
The interface is a specification, similar to the interface on the hardware, the PCI slot on the computer motherboard The specification is similar to the Java interface. As long as it follows the PCI interface, any brand of card can be inserted into the PCI slot. So the interface is a specification. An interface is a description of some functions provided by something to the outside world. We can also use interfaces to implement polymorphic functions. At the same time, interfaces also make up for the weakness of Java's single inheritance, that is, a class can implement multiple interfaces.
2. What is java interface
Interface (English: Interface) is an abstract type in the JAVA programming language and is a collection of abstract methods. The interface usually starts with interface to declare. A class inherits the abstract methods of the interface by inheriting the interface. (Recommended tutorial: java tutorial)
We use the interface keyword to define the interface , generally use interfaces to declare methods or constants. Methods in interfaces can only be declarations, not specific implementations. This is different from abstract classes. Interfaces are higher level abstractions. The definition format of the interface is
public interface 接口名称{ //可以定义常量 //方法只有方法声明,而且是公共的。 public void 方法名称(); ... }
If a class wants to implement the interface, it only needs to use the implements keyword. The implementation class must implement all the methods in the interface
public class 实现类名 implements 接口{ //实现接口的方法 }
3. Application of interfaces
It is very simple to define an interface. Of course, it is not very simple to design a good interface. You must think about the constants and methods of this interface. But the technology is very simple. The sample code is as follows:
// 定义方法的接口 public interface Myinterface { // 定义程序使用的常量的接口,接口中只能有常量。 public static final double price = 1450.00; public static final int counter = 5; //接口中所有的方法都没有方法体。 public void add(int x, int y); public void volume(int x,int y, int z); }
It is not difficult to implement the interface. The code is as follows:
//实现 接口 public class MyImple implements Myinterface { @Override public void add(int x, int y) { } @Override public void volume(int x, int y, int z) { } }
A class can implement multiple interfaces because Java is single inheritance. The interface can make up for this. We can define another interface
public interface MyInterface2 { public void countpp(); }
Modify the above implementation class. To implement multiple interfaces, you can use commas to separate them. Of course, all interface methods must be implemented.
//实现 接口1,接口2 public class MyImple implements Myinterface ,MyInterface2{ @Override public void add(int x, int y) { } @Override public void volume(int x, int y, int z) { } @Override public void countpp() { } }
The above is the detailed content of what is java interface. For more information, please follow other related articles on the PHP Chinese website!

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Notepad++7.3.1
Easy-to-use and free code editor

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.