当前位置: 代码迷 >> J2SE >> 如何确定引用的类型?(确定一个Object引用具体是什么)
  详细解决方案

如何确定引用的类型?(确定一个Object引用具体是什么)

热度:213   发布时间:2016-04-24 02:26:45.0
怎么确定引用的类型?(确定一个Object引用具体是什么)
我从别人那里得到了一个引用,是object类型的,想通过某种方法查看这个引用具体是哪种类型的,请问使用什么方法?

------解决方案--------------------
getClass()
------解决方案--------------------
Class<? extends String> java.lang.Object.getClass()
Returns the runtime class of an object. That Class object is the object that is locked by static synchronized methods of the represented class. 

Returns:
The java.lang.Class object that represents the runtime class of the object. The result is of type Class where X is the erasure of the static type of the expression on which getClass is called.
  相关解决方案