带参数的 newInstance

发布于 2024-10-23 12:19:38 字数 196 浏览 1 评论 0原文

有没有什么方法可以在 Scala 中“动态”/反射地/等创建带有参数的类的新实例?

例如,类似:

class C(x: String)
manifest[C].erasure.newInstance("string")

但是可以编译。 (放心,这也是在比这个简化示例更有意义的上下文中使用的!)

Is there any way to 'dynamically'/reflectively/etc create a new instance of a class with arguments in Scala?

For example, something like:

class C(x: String)
manifest[C].erasure.newInstance("string")

But that compiles. (This is also, rest assured, being used in a context that makes much more sense than this simplified example!)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦过后 2024-10-30 12:19:38

erasure 的类型为 java.lang.Class,因此您可以使用构造函数(无论如何,在这个简单的情况下您不需要清单 - 您只需使用 classOf [C])。您可以先使用 getConstructor 方法找到对应的构造函数(具有对应的参数类型),然后直接调用 newInstance ,而不是直接调用 newinstance它:

classOf[C].getConstructor(classOf[String]).newInstance("string")

erasure is of type java.lang.Class, so you can use constructors (anyway you don't need manifest in this simple case - you can just use classOf[C]). Instead of calling newinstance directly, you can at first find correspondent constructor with getConstructor method (with correspondent argument types), and then just call newInstance on it:

classOf[C].getConstructor(classOf[String]).newInstance("string")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文