API定义:public final Class<?> getClass(),其在Object类中,不能被覆盖调用的都是Object的方法(天外有天),返回值:表示此对象运行时类的 Class 对象
import java.util.*;
public class Test extends Date{
public static void main(String[] args) {
new Test().test();
}
public void test(){
System.out.println(this.getClass().getName());
System.out.println(getClass().getName());
System.out.println(super.getClass().getName());
}
}
都会打印test,