public class MyClass {
public static void main(String args[]) {
int x = 5;
System.out.println(((Object)x).getClass().getSimpleName());
}
}
((Object) myVar).getClass().getName()
//OR
((Object) myInt).getClass().getSimpleName()
a.getClass().getName()