예를 들어 Java에서는 직접 getter를 작성하거나 (IDE에서 생성) lombok에서 @Getter와 같은 주석을 사용할 수 있습니다. 매우 간단합니다.
그러나 Kotlin에는 기본적으로 getter 및 setter가 있습니다. 그러나 나는 그것들을 사용하는 방법을 이해할 수 없습니다.
나는 그것을 만들고 싶다. 자바와 비슷하다.
private val isEmpty: String
get() = this.toString() //making this thing public rises an error: Getter visibility must be the same as property visibility.
그렇다면 게터는 어떻게 작동합니까?
In your case the private access modifier is redundant
어떻게? Kotlin doc의 기본 수정자는 공개입니다. kotlinlang.org/docs/reference/visibility-modifiers.html