s8.scala

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

SCALA
20
字号
/* I believe this code is correct, but the compiler rejects it:**** S8.scala:18: type mismatch;** found   : M.x.A** required: M.x.a.B**        val y: x.a.B = new x.A(); //correct?**                              ^** For a given value x of type S8, type x.A should be** a subtype of x.a.B.*/class S8() {    val a: S8 = this;    class A() extends a.B() {}    class B() {}}object M {    val x = new S8();    val y: x.a.B = new x.A(); //correct?}

⌨️ 快捷键说明

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