Java Object getClass()方法
java.lang.Object.getClass() 方法返回运行时类的对象。那类对象是一个由表示的类的静态同步方法被锁定的对象。
1 语法
public final Class getClass()
2 参数
无
3 返回值
此方法返回一个Class类型的对象,表示运行时对象的类。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Object getClass()方法
*/
import java.util.GregorianCalendar;
public class ObjectDemo {
public static void main(String[] args) {
// create a new ObjectDemo object
GregorianCalendar cal = new GregorianCalendar();
// print current time
System.out.println("" + cal.getTime());
// print the class of cal
System.out.println("" + cal.getClass());
// create a new Integer
Integer i = new Integer(5);
// print i
System.out.println("" + i);
// print the class of i
System.out.println("" + i.getClass());
}
}
输出结果为:
Sat Sep 22 00:31:24 EEST 2012
class java.util.GregorianCalendar
5
class java.lang.Integer
热门文章
优秀文章