作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Scala 编程新手,有人可以解释一下下面的警告原因吗?
我试图找到原因,这似乎是之前的一个大修复:https://issues.scala-lang.org/browse/SI-6439
那么为什么我会收到此警告?
最佳答案
这是特定于 REPL(读取评估打印循环)的,因为它无法知道用户输入何时结束。
使用 :paste
来解决它:
scala> class A {}
defined class A
scala> object A {}
defined object A
warning: previously defined class A is not a companion to object A.
Companions must be defined together; you may wish to use :paste mode for this.
scala> :paste
// Entering paste mode (ctrl-D to finish)
class A {}
object A {}
// Exiting paste mode, now interpreting.
defined class A
defined object A
关于Scala 伴生类警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29554348/
我是一名优秀的程序员,十分优秀!