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 |
Tags
- notification
- LiveData
- HTTP
- CollapsingToolbarLayout
- room
- onMeasure
- Behavior
- sqlite
- recyclerview
- CustomView
- activity
- View
- Android
- hilt
- onLayout
- BOJ
- AppBarLayout
- ViewModel
- 알림
- Coroutine
- CoordinatorLayout
- DataBinding
- Navigation
- lifecycle
- 알고리즘
- Algorithm
- 코틀린
- 안드로이드
- 백준
- kotlin
Archives
- Today
- Total
목록this (1)
개발일지
Kotlin in A..Z (14) - 상속
- 상속 상속을 하면 부모 클래스의 프로퍼티와 메서드를 불려받는다. open 키워드를 붙여서 상속 시킬 수 있다. 코드 open class Parent(val name: String) { } class Child(name: String) : Parent(name) { } fun main() { val child = Child("개발일지") println(child.name) } 결과 개발일지 자바는 open 키워드를 안붙여도 상속 시킬 수 있고, final 키워드를 붙여야 최하위 클래스가 되지만, 코틀린은 open 키워드를 붙여야 상속 시킬 수 있고, open 키워드를 붙이지 않으면 최하위 클래스가 된다. - 메소드 오버라이딩 open과 override 키워드를 통해 부모의 클래스로 부터 상속받은 메서드..
Kotlin (코틀린)
2020. 7. 15. 12:32