Home  >  Article  >  Java  >  What is the function of java empty interface

What is the function of java empty interface

WBOY
WBOYforward
2023-05-03 15:46:141242browse

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;
}

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 {
    ....
}

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!

Statement:
This article is reproduced at:yisu.com. If there is any infringement, please contact admin@php.cn delete