Scala 泛型 - 为什么我无法在泛型类中创建参数化对象?
我目前正在学习 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看这个问题,有一个工厂的例子:
如何实例化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
因为你不能确定总是有一个公共的、无参数的构造函数。
Because you can not be sure there always is a public, parameterless constructor.