We can get class Class object by 3 methods:
I don\'t understood the di
One important difference is: A.class will perform loading and linking of class A. Class.forName("A") will perform loading, linking and initialization of class A.