我是靠谱客的博主 直率大碗,最近开发中收集的这篇文章主要介绍java.lang.IllegalArgumentException: object is not an instance of declaring class(反射中使用),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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

	

Class<CompGoods> clazz = CompGoods.class;
//为购物车的选配信息赋值
		Class<CompGoodsParts> 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(反射中使用)的全部内容,希望文章能够帮你解决java.lang.IllegalArgumentException: object is not an instance of declaring class(反射中使用)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部