在 kotlin 中定义具有公共 getter 和私有(只能在内部修改)setter 的 var 的正确方法是什么?
var setterVisibility: String = "abc" // Initializer required, not a nullable type private set // the setter is private and has the default implementation
请参阅:属性 Getter 和 Setter