码迷,mamicode.com
首页 > 其他好文 > 详细

5.2 Object类的getClass()方法

时间:2015-10-25 12:25:42      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:

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);
	}
}


5.2 Object类的getClass()方法

标签:

原文地址:http://my.oschina.net/u/2001589/blog/521707

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!