本文介绍了我可以使用Class.newInstance()与构造函数参数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想使用 Class.newInstance()
,但我实例化的类没有nullary构造函数。因此,我需要能够传递构造函数参数。
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?
推荐答案
Class.getDeclaredConstructor(String.class).newInstance("HERESMYARG");
这篇关于我可以使用Class.newInstance()与构造函数参数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!