package com.example;
import java.util.Date;
/**
* @author 欢迎加入Java技术交流群:646766275
*
*/
public class Test extends Date {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
new Test().test();
}
public void test() {
String s1 = this.getClass().getName();
String s2 = super.getClass().getName();
String s3 = getClass().getSuperclass().getName();
System.out.println(s1 + " " + s2 + " " + s3);
}
}
main方法执行结果:
com.example.Test com.example.Test java.util.Date