小编典典

Kotlin:公共获取私有集变量

all

在 kotlin 中定义具有公共 getter 和私有(只能在内部修改)setter 的 var 的正确方法是什么?


阅读 71

收藏
2022-06-22

共1个答案

小编典典

var setterVisibility: String = "abc" // Initializer required, not a nullable type
    private set // the setter is private and has the default implementation

请参阅:属性 Getter 和
Setter

2022-06-22