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