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:

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Examine Interface Example
Post your Comment