怎样取到ArrayList中的数据类型

Java集合问题怎样可以得到ArrayList集合中的数据的数据类型?... Java 集合问题怎样可以得到 ArrayList集合 中的数据 的 数据类型? 展开
 我来答
yaoyue1019
2015-07-24 · 知道合伙人互联网行家
yaoyue1019
知道合伙人互联网行家
采纳数:804 获赞数:3392
擅长lua脚本 与android前端交互设计

向TA提问 私信TA
展开全部

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

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式