标签:his UI sys 分析 jvm date word serial 接口
1 package test; 2 import java.util.Date; 3 public class SuperTest extends Date{ 4 private static final long serialVersionUID = 1L; 5 private void test(){ 6 System.out.println(super.getClass().getName()); 7 } 8 9 public static void main(String[]args){ 10 new SuperTest().test(); 11 } 12 }
输出结果为:test.SuperTest
分析:super
.getClass() 得到的依然是runtime当前类,若要得到真正的父类,需要用
super
.getClass().getSuperclass()
虽然这里写的是
super
,但其实用
this
也一样
标签:his UI sys 分析 jvm date word serial 接口
原文地址:http://www.cnblogs.com/XuGuobao/p/7204704.html