Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- appbar
- Kotlin
- 안드로이드
- DART
- data
- livedata
- textfield
- binding
- drift
- Flutter
- Compose
- ScrollView
- 계측
- Button
- 앱바
- Navigation
- CustomScrollView
- intent
- activity
- android
- Dialog
- tabbar
- viewmodel
- LifeCycle
- 테스트
- 앱
- TEST
- textview
- Coroutines
- scroll
Archives
- Today
- Total
목록enumclass (1)
Study Record
[Kotlin] Enum Class
😶 Enum Class 개요 enum class TestEnum { PLUS, TIME, MIN; } fun main() { for(value in TestEnum.values()) println(value.name) // kotlin 1.9.0 일 경우 for(value in TestEnum.entries) println(value.toString()) } 코틀린에서 enum 은 상수 집합을 보유할 수 있는 데이터 타입이다. class 앞에 enum 키워드를 추가하는 것으로 enum class 를 정의할 수 있고 클래스 내 열거 상수를 쉽표로 구분한다. enum class Direction { NORTH, SOUTH, WEST, EAST } 예시 코드의 NORTH, SOUTH 등의 열거 상수들은 전부 ..
안드로이드/Kotlin
2023. 8. 10. 17:19