Scala 泛型 - 为什么我无法在泛型类中创建参数化对象?

发布于 2024-10-23 01:14:52 字数 315 浏览 2 评论 0原文

我目前正在学习 scala。
为什么此代码不起作用:

class GenClass[T](var d : T) {
  var elems: List[T] = Nil 
  def dosom(x: T) = { 
    var y = new T() 
    y   
  }
}

我得到: 错误:需要类类型,但找到了 T
代替 var y - new T()

是因为从 java 中删除了类型吗?有什么方法可以解决这个问题 - 在泛型函数中创建 T 类型的变量吗?

I'm currently learning scala.
Why this code doesn't work:

class GenClass[T](var d : T) {
  var elems: List[T] = Nil 
  def dosom(x: T) = { 
    var y = new T() 
    y   
  }
}

I get:
error: class type required but T found
in place of var y - new T()

Is it because type erasing from java? Is there any way to solve this - create variable of type T inside generic function?

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

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

发布评论

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

评论(2

小糖芽 2024-10-30 01:14:52

看看这个问题,有一个工厂的例子:
如何实例化Scala 中类型参数表示的类型

have a look at this question, there's an example of a factory:
How to instantiate an instance of type represented by type parameter in Scala

一花一树开 2024-10-30 01:14:52

因为你不能确定总是有一个公共的、无参数的构造函数。

Because you can not be sure there always is a public, parameterless constructor.

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