最佳答案
例如,在 Java 中,我可以自己编写 getter (由 IDE 生成) ,或者在 lombok 中使用像@Getter 这样的注释——这非常简单。
然而科特林有 getters and setters by default。 但我不知道怎么用。
我想让它,让我们说-类似于 Java:
private val isEmpty: String
get() = this.toString() //making this thing public rises an error: Getter visibility must be the same as property visibility.
那么获得者是如何工作的呢?