当我在Scala控制台中输入代码for(i<-1 to 10 reverse) print(i + " ")
时,它会向我显示警告:
warning: there were 1 feature warning(s); re-run with -feature for details
我不知道如何向Scala控制台提供-feature
选项。
我试图通过scala --feature
启动控制台,但它没有用。
有人能帮助我吗?
答案 0 :(得分:4)
只需在控制台中输入:warnings
即可查看。
答案 1 :(得分:4)
2.11也允许你打开它:
scala> :se +feature
或关闭
scala> :se -feature
或明确
scala> :se -feature:true
最后一点是最近的设置更新;可能多余的形式令人困惑,会消失,对吗?