代码之家  ›  专栏  ›  技术社区  ›  DodgyCodeException

文件在intellij插件中编译正常,但不使用kotlinc命令行编译器编译

  •  1
  • DodgyCodeException  · 技术社区  · 6 年前

    以下Kotlin源文件使用Intellij IDEA 2018.3.1中的Kotlin 1.3.11插件编译并运行良好。但是,它无法在Kotlin命令行编译器中编译,并给出以下消息。代码是否有问题,或者我是否缺少类路径依赖项或其他内容?

    C:\tmp>type Main.kt
    import java.nio.file.Files
    import java.nio.file.Paths
    
    fun main() {
        Files.lines(Paths.get("t.txt"))
                .use { lines -> lines.forEach { println(it) } }
    }
    
    C:\tmp>kotlinc -version
    info: kotlinc-jvm 1.3.11 (JRE 1.8.0_192-b12)
    
    C:\tmp>kotlinc Main.kt
    Main.kt:6:14: error: unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
    @InlineOnly public inline fun <T : Closeable?, R> ???.use(block: (???) -> ???): ??? defined in kotlin.io
                .use { lines -> lines.forEach { println(it) } }
                 ^
    Main.kt:6:20: error: cannot infer a type for this parameter. Please specify it explicitly.
                .use { lines -> lines.forEach { println(it) } }
                       ^
    Main.kt:6:35: error: cannot choose among the following candidates without completing type inference:
    @HidesMembers public inline fun <T> Iterable<???>.forEach(action: (???) -> Unit): Unit defined in kotlin.collections
    @HidesMembers public inline fun <K, V> Map<out ???, ???>.forEach(action: (Map.Entry<???, ???>) -> Unit): Unit defined in kotlin.collections
                .use { lines -> lines.forEach { println(it) } }
                                      ^
    Main.kt:6:53: error: unresolved reference: it
                .use { lines -> lines.forEach { println(it) } }
                                                        ^
    
    C:\tmp>
    
    1 回复  |  直到 6 年前
        1
  •  0
  •   Omar Mainegra    6 年前

    问题

    这个 use 函数未在中定义 kotlin-stdlib 但在 kotlin-std-jdk7 (见 https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/use.html )

    解决方案

    kotlinc -classpath kotlin-stdlib-jdk7-1.3.11.jar Main.kt