当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.lang.Object.getClass()用法及代码示例



描述

这个java.lang.Object.getClass()方法返回对象的运行时类。该 Class 对象是被表示类的静态同步方法锁定的对象。

声明

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

public final Class getClass()

参数

NA

返回值

此方法返回表示对象的运行时类的 Class 类型的对象。

异常

NA

示例

下面的例子展示了 lang.Object.getClass() 方法的用法。

package com.tutorialspoint;

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

相关用法


注:本文由纯净天空筛选整理自 Java.lang.Object.getClass() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。