Home  >  Article  >  Java  >  What is the difference between interface and class in java

What is the difference between interface and class in java

王林
王林Original
2019-11-12 11:29:364586browse

What is the difference between interface and class in java

The difference is as follows:

A class is not allowed to inherit multiple parent classes in Java, but it can be used to achieve "the function of one class inheriting multiple classes" Interface, a class implements multiple interfaces to indirectly implement multiple inheritance.

In essence, an interface is also an abstract class. This abstract class only contains definitions of constants and methods, but no implementation of variables and methods.

Multiple unrelated classes can implement the same interface. A class can implement multiple unrelated interfaces. Similar to the inheritance relationship, polymorphism exists between interfaces and implementation classes.

The interfaces provided by java are in the corresponding packages. You can use the interfaces provided by java by introducing the package. You can also define the interface yourself. A java source file is made of classes and interfaces.

Recommended tutorial: Java tutorial

The above is the detailed content of What is the difference between interface and class in java. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]