반응형
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
- 광 센서
- 코틀린
- mysql 5.7
- Android Studio 3.6
- 걸음 감지 센서
- Exoplayer
- 금속 탐지기 센서
- 온라인코딩
- 자격증
- 동영상 실행
- 자기장 센서
- Kotlin
- BottomSheetDialog
- LayoutParmas
- lateinit
- 온라인무료코딩사이트
- 웹코드빌드
- 회전 센서
- 걸음수 감지 센서
- 온라인IDE
- RecyclerView
- powercfg
- 온라인에디터
- utf8mb4
- setBackgroundResource
- Aplha
- phpstorm
- Android
- ARGB
Archives
- Today
- Total
목록산술연산자 (1)
Memory

더하기 (plus) https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/plus.html val num1 = 10 val num2 = 2 val type1 = num1 + num2 println(type1) val type2 = num1.plus(num2) println(type2) 빼기 (minus) https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/minus.html val num1 = 10 val num2 = 2 val type1 = num1 - num2 println(type1) val type2 = num1.minus(num2) println(type2) 곱하기 (tim..
IT/ANDROID
2023. 6. 13. 00:17