热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

如何通过反射获取HashSet的元素?-HowcanIgetanelementofaHashSetwithreflection?

Imtryingtogetthetypeofanarrayelements.Igotsomethinglikethis:我正在尝试获取数组元素的类型。我有这样的事情:

I'm trying to get the type of an array elements. I got something like this:

我正在尝试获取数组元素的类型。我有这样的事情:

Set mySet = new HashSet();

I have to take via reflection the 'Foo' as a String. I tried something like this:

我必须通过反射将'Foo'作为一个字符串。我试过这样的事情:

if (className.equals("java.util.HashSet")){
        Object arrayElement = Array.get(value, 0);
        isComplex = isComplex(field, arrayElement);
}

Array.get() is only for ArrayList and there isn't any HashSet.iterator()as Util

Array.get()仅用于ArrayList,并且没有任何HashSet.iterator()作为Util

Thanks!

2 个解决方案

#1


1  

Your question is quite unclear, but in this code

您的问题很不清楚,但在此代码中

new HashSet();

you have no chance to get the Foo part via reflection. Period. The relevant search term is "type erasure".

你没有机会通过反思获得Foo部分。期。相关搜索词是“类型擦除”。

#2


0  

The method to obtain the Foo is:

获得Foo的方法是:

ParameterizedType listType = (ParameterizedType) field.getGenericType();
Class stringListClass = (Class) listType.getActualTypeArguments()[0];

But you must be sure that field is an Array/Collection/HashSet, else, will be an exception.

但是你必须确保该字段是一个Array / Collection / HashSet,否则将是一个例外。


推荐阅读
author-avatar
丨火云邪神丨
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有