gpt4 book ai didi

scala - 解释为什么 import scala.Predef.String 构建失败

转载 作者:行者123 更新时间:2023-12-02 00:07:05 26 4
gpt4 key购买 nike

我发现 Scala 导入有一个非常奇怪的问题。

我写了示例类:

package test_scala_predef

object App extends App {

classOf[T]
println( "Hello World!" )
}

class T {

}

这个类编译没有任何错误。

但是,如果我添加

import scala.Predef.String

然后我得到编译错误:

[INFO] Compiling 1 source files to /home/uthark/src/_/test_scala_predef/target/classes at 1374028063588
[ERROR] /home/uthark/src/_/test_scala_predef/src/main/scala/test_scala_predef/App.scala:10: error: not found: value classOf
[INFO] classOf[T]
[INFO] ^
[ERROR] /home/uthark/src/_/test_scala_predef/src/main/scala/test_scala_predef/App.scala:11: error: not found: value println
[INFO] println( "Hello World!" )
[INFO] ^
[ERROR] two errors found

我有一个想法,在我从 scala.Predef 添加特定导入之后,将不会添加 scala.Predef._ 的隐式导入。但是我在 Scala 文档中找不到任何相关信息。谁能指出我文档中的相关部分?

我检查了Scala Language Specification (PDF) ,第 12.5 节涵盖了 scala.Predef 但也没有找到任何相关内容。

我使用最新的稳定 scala 版本(目前为 2.10.2)

最佳答案

我在资源中找到了答案。

https://github.com/scala/scala/blob/master/src/compiler/scala/tools/nsc/typechecker/Contexts.scala :

  /** List of symbols to import from in a root context.  Typically that
* is `java.lang`, `scala`, and [[scala.Predef]], in that order. Exceptions:
*
* - if option `-Yno-imports` is given, nothing is imported
* - if the unit is java defined, only `java.lang` is imported
* - if option `-Yno-predef` is given, if the unit body has an import of Predef
* among its leading imports, or if the tree is [[scala.Predef]], `Predef` is not imported.
*/
protected def rootImports(unit: CompilationUnit): List[Symbol] = {
assert(definitions.isDefinitionsInitialized, "definitions uninitialized")

if (settings.noimports) Nil
else if (unit.isJava) RootImports.javaList
else if (settings.nopredef || treeInfo.noPredefImportForUnit(unit.body)) {
debuglog("Omitted import of Predef._ for " + unit)
RootImports.javaAndScalaList
}
else RootImports.completeList
}

这回答了我的问题。

关键句是这样的:

Exceptions: ... if the unit body has an import of Predef among its leading imports

此外,在#scala irc 上的聊天中,有人建议在 Scala 问题跟踪系统中创建错误,所以我做到了。 https://issues.scala-lang.org/browse/SI-7672

关于scala - 解释为什么 import scala.Predef.String 构建失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17690183/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com