Online Java Compiler By
JavaTpoint.com
//import statements import java.lang.*; import java.lang.reflect.Modifier; public class ClassgetModifiersExample1 { public static void main(String[] args) { ClassgetModifiersExample1 obj = new ClassgetModifiersExample1(); Class class1 = obj.getClass(); int in = class1.getModifiers(); String rtvl = Modifier.toString(in); System.out.println("Class Modifier = " + rtvl); } }
Output