gpt4 book ai didi

带有构造函数参数的动态Java类

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:02:10 25 4
gpt4 key购买 nike

我必须动态创建一个类,但我想使用类构造函数传递参数。

目前我的代码看起来像

Class<HsaInterface> _tempClass = (Class<HsaInterface>) Class.forName(hsaClass);
_tempClass.getDeclaredConstructor(String.class);
HsaInterface hsaAdapter = _tempClass.newInstance();
hsaAdapter.executeRequestTxn(txnData);

如何调用带有参数的构造函数?

最佳答案

你接近了,getDeclaredConstructor() 返回一个你应该使用的 Constructor 对象。此外,您需要将一个 String 对象传递给该 ConstructornewInstance() 方法。

Class<HsaInterface> _tempClass = (Class<HsaInterface>) Class.forName(hsaClass);
Constructor<HsaInterface> ctor = _tempClass.getDeclaredConstructor(String.class);
HsaInterface hsaAdapter = ctor.newInstance(aString);
hsaAdapter.executeRequestTxn(txnData);

关于带有构造函数参数的动态Java类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7635313/

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