我可以将 Class.newInstance() 与构造函数参数一起使用吗? [英] Can I use Class.newInstance() with constructor arguments?

查看:35
本文介绍了我可以将 Class.newInstance() 与构造函数参数一起使用吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用 Class.newInstance() 但我正在实例化的类没有空构造函数.因此我需要能够传入构造函数参数.有没有办法做到这一点?

I would like to use Class.newInstance() but the class I am instantiating does not have a nullary constructor. Therefore I need to be able to pass in constructor arguments. Is there a way to do this?

推荐答案

MyClass.class.getDeclaredConstructor(String.class).newInstance("HERESMYARG");

obj.getClass().getDeclaredConstructor(String.class).newInstance("HERESMYARG");

这篇关于我可以将 Class.newInstance() 与构造函数参数一起使用吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆