标签:
public class Student extends Object{ }
/* * public final Class getClass():返回此 Object 的运行时类 * Class类的方法: * public String getName():以 String 的形式返回此 Class 对象所表示的实体 */ public class StudentTest { public static void main(String[] args) { Student s = new Student(); Class<?> c = s.getClass(); String str = c.getName(); System.out.println(str); // cn.itcast_01.Student // 链式编程 String str2 = s.getClass().getName(); System.out.println(str2); } }
标签:
原文地址:http://my.oschina.net/u/2001589/blog/521707