我正在尝试在本地计算机上玩Kotlin HTML builder example


abstract class Tag(val name: String) : Element {
    val children = arrayListOf<Element>()
    val attributes = hashMapOf<String, String>()

关于arrayListOfhashMapOf尚未解决的IntelliJ想法怒吼。

intellij-idea - arrayListOf和hashMapOf:未解析的引用-LMLPHP

导入定义了arrayListOfkotlin.collections(import kotlin.collections.*)并没有帮助。

我该如何解决这些错误?

最佳答案

确保使用最新的1.0 kotlin插件和1.0运行时。之后,使IJ缓存无效并重新启动IJ可能是一个好主意。

关于intellij-idea - arrayListOf和hashMapOf:未解析的引用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35644163/

10-12 03:23