Home »
Java Programs »
Java Class and Object Programs
Java program to check whether a class is a member class or not
Java example to check whether a class is a member class or not.
Submitted by Nidhi, on April 30, 2022
Problem statement
In this program, we will check whether a class is a member class or not using the isMemberClass() method and print an appropriate message.
Java program to check whether a class is a member class or not
The source code to check whether a class is a member class or not is given below. The given program is compiled and executed successfully.
// Java program to check whether a class is a
// member class or not
class A {}
public class Main {
class B {}
public static void main(String[] args) throws ClassNotFoundException {
Class cls1 = A.class;
Class cls2 = B.class;
if (cls1.isMemberClass())
System.out.println("The cls1 is representing a member class");
else
System.out.println("The cls1 is not representing a member class");
if (cls2.isMemberClass())
System.out.println("The cls2 is representing a member class");
else
System.out.println("The cls2 is not representing a member class");
}
}
Output
The cls1 is not representing a member class
The cls2 is representing a member class
Explanation
In the above program, we created a public class Main that contains a main() method. The main() method is the entry point for the program. Here, we checked whether a class is a member class or not using the isMemberClass() method. The isMemberClass() method returns true, if the class is a member class otherwise it returns false.
Java Class and Object Programs »