Home  >  Article  >  Java  >  How to determine whether a class implements an interface in java

How to determine whether a class implements an interface in java

王林
王林Original
2020-05-15 10:01:189604browse

How to determine whether a class implements an interface in java

We can use the instanceof keyword to make a judgment. instanceof is a binary operator in Java and is a reserved keyword in Java. The function of the instanceof keyword is to test whether the object on the left is an instance of the class on the right and return the boolean data type. Of course, it can also be used to test the interface.

(Recommended video tutorial: java video)

Specific code:

public class Test {
    public static void main(String[] args) {
        Student student = new Student();
        System.out.println(student instanceof Person);
    }
}

class Student implements Person {
}

Recommended tutorial: java entry program

The above is the detailed content of How to determine whether a class implements an interface 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 admin@php.cn