在A类中,如果要得到类名,可以用this.getClass().getSimpleName()或者使用this.getClass().getName(),通过以下方法区别这两个方法
package com.cn.plant; public class tree {
@Test public void getClassName(){ String strName=this.getClass().getName(); System.out.println("getName输出结果:"+strName); String strSimpleName=this.getClass().getSimpleName(); System.out.println("getSimpleName输出结果:"+strSimpleName); } }
Console端输出结果如下:
getName输出结果:com.cn.plant.tree
getSimpleName输出结果:tree
原文地址:http://www.cnblogs.com/sylvia-liu/p/3860894.html