在下面的代码中,我必须在=之前添加空格,为什么?

我认为private val listofMDetail: MutableList<MDetail>=(在=之前没有空格)可以,但是实际上,Android Studio 3.1.3给我一个错误。

  private val listofMDetail: MutableList<MDetail> =           //I have to add space before =
            try{
                myGson.fromJson<MutableList<MDetail>>(mJson)?: mutableListOf<MDetail>()  //Load
            }catch(e:Exception) {
                e.message?.let{ logError("Paser: "+it)}
                throw Exception(e)
            }

最佳答案

符号>=读为大于或等于,这就是为什么编译器显示错误Expecting a '>'的原因。

只需按照Google维护的Kotlin样式指南中的建议添加空格:https://android.github.io/kotlin-guides/style.html

08-04 05:38