从Java中的对象获取类
可以使用java.lang.Object.getClass()获得对象的运行时类。同样,该getName()
方法用于获取类的名称。
给出一个演示使用该getClass()
方法获取对象类的程序,如下所示:
示例
public class Demo {public static void main (String [] args) {
Integer integer = new Integer(10);
Class c = integer.getClass();
System.out.println ("The class is: " + c.getName());
c = new Demo().getClass();
System.out.println ("The class is: " + c.getName());
}
}
输出结果
The class is: java.lang.IntegerThe class is: Demo
现在让我们了解上面的程序。
首先创建一个新的整数。然后,该getClass()
方法用于获取运行时类。最后,该getName()
方法用于获取类的名称,即java.lang.Integer并进行打印。演示这的代码片段如下-
Integer integer = new Integer(10);Class c = integer.getClass();
System.out.println ("The class is: " + c.getName());
此后,该getClass()
方法用于获取Demo对象的运行时类。然后,该getName()
方法用于获取类的名称(即Demo)并打印出来。演示这的代码片段如下-
c = new Demo().getClass();System.out.println ("The class is: " + c.getName());
以上是 从Java中的对象获取类 的全部内容, 来源链接: utcz.com/z/341012.html