In this part of tutorial we will discuss how do you know that whether a given class is an "Interface" or a "Class"?
Examine Interface Example
In this part of tutorial we will discuss how do you know that whether a given class is an "Interface" or a "Class"?
To know that given class is an Interface or Class we can use boolean method isInterface() which returns true if given class is an Interface and false if it is a class.
Here is the code for this example:
import java.lang.reflect.*;
|
Output: