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
- DataBinding
- BOJ
- Android
- 알림
- onMeasure
- notification
- activity
- sqlite
- room
- onLayout
- recyclerview
- View
- 안드로이드
- Algorithm
- 백준
- LiveData
- AppBarLayout
- CoordinatorLayout
- hilt
- CustomView
- kotlin
- 알고리즘
- lifecycle
- 코틀린
- ViewModel
- Coroutine
- HTTP
- CollapsingToolbarLayout
- Navigation
- Behavior
Archives
- Today
- Total
목록reified (1)
개발일지
Kotlin in A..Z (27) - reified
reified의 필요성 코드 fun genericFunction() { // Error Kotlin: Cannot use 'T' as reified type parameter. Use a class instead. println(T::class.java) } 위 함수는 일반적인 제네릭 함수이다. 위 함수 같은 경우는 Java처럼 T 형식 매개변수가 런타임에 삭제되기 때문에 T에 접근할 수 없다. 자바에서 접근하던 방법 매개변수를 받아서 실행시간에 사라지지 않게 했다. 코드 void genericFunction(T arg) { arg.getClass(); } reified inline 함수에만 사용할 수 있다. inline처리 될 때 코드가 복사되면서 실제 자료형을 알 수 있기 때문에 런타임에서도 사용할 ..
Kotlin (코틀린)
2020. 7. 19. 04:47