Home > Java > JavaBase > body text

What is the difference between interface and class in java

王林
Release: 2019-11-12 11:29:36
Original
4761 people have browsed it

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!

Related labels:
source:php.cn
Statement of this Website
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 admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!