s1.scala

来自「JAVA 语言的函数式编程扩展」· SCALA 代码 · 共 14 行

SCALA
14
字号
/* This is probably no bug, I just don't understand why** type inference does not find the right instantiation of foo.** Currently it reports:**** S1.scala:12: inferred type arguments [S1] do not conform to** method foo's type parameter bounds [T <: S1.this.type]**        foo(this);**           ^*/class S1() {    def foo[T <: this.type](x: T) = x;    foo[this.type](this);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?