怎样取到ArrayList中的数据类型
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样取到ArrayList中的数据类型相关的知识,希望对你有一定的参考价值。
Java 集合问题怎样可以得到 ArrayList集合 中的数据 的 数据类型?
ArrayList 存放的是一个泛型,所以只能把它当成Object类型来使用
所以从思路上来说 你就只能看Object这个类的成员函数
Object有一个成员函数getClass() 通过它可以取出List中某一个对象的举起的类
* Returns the unique instance of @link Class that represents this
* object\'s class. Note that @code getClass() is a special case in that it
* actually returns @code Class<? extends Foo> where @code Foo is the
* erasure of the type of the expression @code getClass() was called upon.
* <p>
* As an example, the following code actually compiles, although one might
* think it shouldn\'t:
* <p>
* <pre>@code
* List<Integer> l = new ArrayList<Integer>();
* Class<? extends List> c = l.getClass();</pre>
*
* @return this object\'s @code Class instance.
*/
public final native Class<?> getClass(); 参考技术A for(object o:list)
o.getClass();//得到对应的List中的每个数据的类型。
参考技术B 两种可能可以做到一、集合用了泛型二、集合在使用前有相关说明其它情况不可预知 参考技术C 可以用list.get(i)..getClass()可以得到数据的数据类型,谢谢,之前写的那个是方法是.net的,不好意思 参考技术D arr.item(0).gettype
以上是关于怎样取到ArrayList中的数据类型的主要内容,如果未能解决你的问题,请参考以下文章
如何找出每个对象在 ArrayList<Object> 中的类型?