728x90
반응형
SMALL
직접 테스트 해보고, 사용 하고있는 get set 사용법
getset 만들기
class TestClass{
var context:Context?=null
get(){ return field }
set(value){
if(value!=null) field = value else null!!
}
}
갖다쓰기
var test_class = TestClasS()
test_class.context
- 끝 -
'Kotlin Study' 카테고리의 다른 글
CallBack 함수 in Kotlin 사용 예 (0) | 2021.01.26 |
---|---|
lateinit property 사용시 주의 (0) | 2021.01.26 |
AppStore version , Device installed App version 가져오기 in Kotlin (0) | 2020.07.08 |
Kotlin 만의 null 처리 방식 (0) | 2020.03.13 |
Delay Handler in Kotlin (0) | 2020.02.25 |