gpt4 book ai didi

java - 通过反射检查 Class 是否是 other 的实例

转载 作者:行者123 更新时间:2023-11-29 04:33:08 25 4
gpt4 key购买 nike

我正在尝试创建任何类的随机生成器以进行压力测试。

我的生成器目标是使用默认构造函数创建任何类并填充其原始字段和字符串字段(通过反射)

我还想填充 Number(Integer、Long、Double....)类型的字段,因为它们很容易转换为基元。

但我找不到简单的方法o instanceof类型之间。

这是方法

public static <V> Collection<V> createMassiveCollection(Class<V> clazz, int amount, Class<?> collectionType) throws InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException, NoSuchMethodException, SecurityException {

Random r = new Random();
RandomGenerator rg = new RandomGenerator();
@SuppressWarnings("unchecked")
Collection<V> collection = (Collection<V>) collectionType.newInstance();
for (int i = 0; i < amount; i++) {
V item = clazz.newInstance();

for (Field field : item.getClass().getDeclaredFields()) {

if (java.lang.reflect.Modifier.isStatic(field.getModifiers()) || java.lang.reflect.Modifier.isFinal(field.getModifiers()))
continue;

field.setAccessible(true);

if (field.getType().equals(String.class))
field.set(item, rg.nextCompliment());

else if (field.getType().isPrimitive() && (field.getType() != boolean.class && field.getType() != byte.class && field.getType() != char.class))
field.set(item, r.nextInt(1000000));

else {
Constructor<?> c = null;

try {
c = field.getType().getConstructor(String.class);
}
catch (Exception e) {}
if (c != null && Number.class.isInstance(c.newInstance("1")))
field.set(item, field.getType().getConstructor(String.class).newInstance(r.nextInt(1000000) + ""));
}

}

collection.add(item);
}
return collection;
}

第三个 if 是导致问题的那个我想要类似的东西:“如果 Type<C>Type<V> 的子类型”但我发现的所有方法都需要一个有效的对象实例来检查。

例如。 Number.class.isInstance(field.getType())也不field.getType() instanceof Number工作是因为 field.getType()是类型的实例。

有人知道这是否可行吗?

我想在我的方法签名中提出另一个问题(不太重要)

Class<? extends Collection<V>> collectionType

但是如果我在尝试调用方法时那样做

createMassiveCollection(User.class, 100000, new ArrayList<User>().getClass());

编译失败!因此,为了能够编译,我必须相信用户正在传递某种扩展 Collection 作为参数的类型

最佳答案

要检查一个类是否是另一个类的子类,您必须使用 isAssignableFrom :

if (Number.class.isAssignableFrom(field.getType()) { // ...

对于你的第二个问题,你需要第二个通用的:

public static <V, C extends Collection<?>> Collection<V> createMassiveCollection(Class<V> clazz, int amount, Class<C> collectionType)

您也可以将此泛型定义为 C extends Collection<V>但这会产生编译器警告并且不会阻止像 createMassiveCollection(String.class, 10, new ArrayList<Number>().getClass()) 这样的调用.

顺便说一下,我的最后一个参数是 ArrayList.class .

关于java - 通过反射检查 Class<?> 是否是 other 的实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42971267/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com