位置:首頁 > Java技術 > java.lang > java.lang.Object.getClass()方法實例

java.lang.Object.getClass()方法實例

java.lang.Object.getClass() 方法返回運行時類的對象。那類對象是一個由表示的類的靜態同步方法被鎖定的對象。

聲明

以下是java.lang.Object.getClass()方法的聲明

public final Class getClass()

參數

  • NA

返回值

此方法返回一個Class類型的對象,表示運行時對象的類。

異常

  • NA

例子

下麵的例子顯示lang.Object.getClass()方法的使用。

package com.yiibai;

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