public static void main(String[] args)
{
// Let's print the classloader name of current class.
//Application/System classloader will load this class
Class b= int.class;
Class c=ClassLoaderExample.class;
ClassLoaderExample a= new ClassLoaderExample();
System.out.println(c);
}
what is .class in here and what it specifies? Are c and a different?