java.lang.IllegalArgumentException: object is not an instance of declaring class(反射中使用)

今天在编写代码途中为了省事利用反射来进行代码属性的赋值,然后抛了一个奇怪的异常,废话不多说直接上代码

	

Class clazz = CompGoods.class;
//为购物车的选配信息赋值
		Class cla=CompGoodsParts.class;
		for(int k=1;k<=9;k++) {
			Method declaredMethod = cla.getDeclaredMethod("getPart"+k);
			if(declaredMethod.invoke(queryParts)!=null) {
				Method newMethod = cla.getDeclaredMethod("setPart"+k,String.class);
				newMethod.invoke(compGoods,declaredMethod.invoke(queryParts));
			}
		}
		

在调用第二个newMethod方法时抛异常,仔细检查发现是我想构建这个Method方法应该是CompGoods对象里的方法,然而我却用了CompGoodsParts对象去构建,并且我调用这个方法时用的是CompGoods这个对象去掉用

解决办法:用class对象去构建的method,和调用method的对象必须是同一个

    

Method declaredMethod2 = clazz.getDeclaredMethod("set" +fields[i].getName().substring(0, 1).toUpperCase() + fields[i].getName().substring(1),fields[i].getType());		
					if (declaredMethod.invoke(goodsCmpId)!=null) {	
//调用此method对象必须和构建出这个method对象一致						
declaredMethod2.invoke(compGoods, declaredMethod.invoke(goodsCmpId));
					}

 

你可能感兴趣的:(java.lang.IllegalArgumentException: object is not an instance of declaring class(反射中使用))