get class object java code example
Example 1: java get class name of object
myObject.getClass().getName()
Example 2: how to find the class of an object java
String str = "a String made by the String class";
if(str instanceof String) System.out.println("This is True");
if(str instanceof float) System.out.println("This will never be on your screen");
Example 3: how to use getclass in java
public static String printClassInformation(Object o){
Class<?> cl=o.getClass();
System.out.println("Name: "+cl.getSimpleName());
System.out.println("Full name: "+cl.getCanonicalName());
System.out.println("Methods: "+Arrays.toString(cl.getMethods()));
}