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