반응형
[Kotlin] private constants |
Top-level 에 private 으로 정의한 variable 은 visibility 가 file 로 제한된다.
그래서 아래와 같이 정의해서 쓰면 된다.
private const val MY_CONST = “const”
class AClass{
...
}
Top-level 에 사용하고 싶지 않다면 class 안에 companion object 를 만들어 정의하는 방법도 있다.
class AClass{
companion object{
private const val MY_CONST = "const"
}
}
반응형
'프로그래밍 놀이터 > Kotlin, Coroutine' 카테고리의 다른 글
[Kotlin] Coroutine vs. thread (Light-weight thread 가 뭔 말이야?) (0) | 2018.11.26 |
---|---|
[Kotlin] Coroutines tutorial - async code 쉽게 짜기 (17) | 2018.11.25 |
[Kotlin] findViewById shows "type inference failed..." (0) | 2018.10.06 |
[Kotlin] Parcelable 을 쉽게 만들어보자 (0) | 2018.04.01 |
[Kotlin] initializer 이야기 (0) | 2018.01.19 |
댓글