Home > Java > javaTutorial > body text

What is the function of java empty interface

WBOY
Release: 2023-05-03 15:46:14
forward
1286 people have browsed it

1. Regular interface, including abstract methods.

2. They are all constants.

Do not add any modifiers to the interface category (public is not required either).

Since any field (member variable) in the interface is static and final automatically, the interface becomes a very convenient tool for creating constant groups.

public interface Months {
    int
        JANUARY = 1, FEBURARY = 2, ...,
        DECEMBER = 12;
}
Copy after login

3. The empty interface is also called the mark interface, and its functions are as follows:

is used as a mark.

Logically, a class can become a subclass of an interface.

// null interface
public interface EnvironmentObject{}
 
//
public interface Agent extends EnvironmentObject {
    ....
}
Copy after login

The above is the detailed content of What is the function of java empty interface. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
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