Avatar
おもしろいこと発見した。 まず、Swift↓は当然の結果。 // Swift var title: String = "a" class Foo { var title: String = "x" init() { title = "b" } } let foo = Foo() print(title) print(foo.title) a b そして Kotlin 。 // Kotlin var title: String = "a" class Foo { var title: String = "x" init { title = "b" } } val foo = Foo() println(title) println(foo.title) b x (edited)