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