Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 안드로이드
- 코틀린
- onMeasure
- CustomView
- ViewModel
- 알고리즘
- Navigation
- DataBinding
- 알림
- LiveData
- room
- AppBarLayout
- HTTP
- activity
- lifecycle
- Behavior
- kotlin
- Algorithm
- notification
- Android
- View
- recyclerview
- onLayout
- CoordinatorLayout
- sqlite
- Coroutine
- CollapsingToolbarLayout
- hilt
- 백준
- BOJ
Archives
- Today
- Total
목록클래스 (1)
개발일지
Kotlin in A..Z (13) - 클래스
- 클래스 선언하기 코드 // 클래스 선언 class Something { // 프로퍼티 val id:Long = 0 // 메서드 fun action() { } } - 인스턴스 선언하기 생성자를 통해 인스턴스를 생성할 수 있다. 코드 val something = Something() - 주 생성자 코드 // 주 생성자 정의 class Something constructor(_id:Long) { val id: Long = _id } fun main() { // 주 생성자로 인스턴스 생성 val something = Something(123L) } - constructor를 생략한 주 생성자 코드 // 주 생성자 정의 class Something(_id:Long) { val id: Long = _id } f..
Kotlin (코틀린)
2020. 7. 15. 11:51