怎样取到ArrayList中的数据类型
6个回答
展开全部
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();
2013-09-01
展开全部
for(object o:list){
o.getClass();//得到对应的List中的每个数据的类型。
}
o.getClass();//得到对应的List中的每个数据的类型。
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-09-01
展开全部
两种可能可以做到一、集合用了泛型二、集合在使用前有相关说明其它情况不可预知
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-09-01
展开全部
可以用list.get(i)..getClass()可以得到数据的数据类型,谢谢,之前写的那个是方法是.net的,不好意思
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-09-01
展开全部
arr.item(0).gettype
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询