일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- import
- 클래스
- package
- crawler
- python
- Android
- 콜렉션
- 크롤러
- Yocto
- text
- animation
- textstyle
- DART
- List
- 파이썬
- Class
- 웹크롤러
- set
- function
- 플러터
- pushnamed
- Collection
- variable
- 코틀린
- 다트
- 함수
- map
- ML
- kotlin
- Flutter
- Today
- Total
목록kotlin (41)
조용한 담장
Cheat Sheet & Awesome 모으기. Kotlin cheatsheet blog.kotlin-academy.com/kotlin-cheat-sheet-1137588c75a devhints.io/kotlin fabiomsr.github.io/from-java-to-kotlin speakerdeck.com/agiuliani/kotlin-cheat-sheet awesome github.com/KotlinBy/awesome-kotlin/blob/readme/README.md kotlin.link Flutter cheatsheet awesome github.com/Solido/awesome-flutter Dart cheatsheet awesome github.com/yissachar/awesome-dart..
Google has launched Android Basics in Kotlin, a program for beginner developers that teaches them how to build Android apps. kotlin으로 안드로이드 앱을 개발하기 하려는 초보자들을 위해 무료 코스를 만들었다는데 아직 총 5unit 중 첫 번째 unit 만 올라와 있다. 이왕이면 다 만들고 오픈했으면 살펴보았겠지만... 아직은 너무 조금이다... https://developer.android.com/courses/android-basics-kotlin/course Android Basics in Kotlin course | Android 개발자 | Android Developers The official ..
Reddit 에서 in 과 out 을 이해하는데 도움이 됬다고 올라온 사이트 읽어보진 못했지만 추천이 있으니 저장차원에서 일단 기록! https://kotlin.christmas/2019/22 The ins and outs of Kotlin Wonder why a MutableList isn't a subtype of MutableList? Ever seen the "in" and "out" modifiers in Kotlin and wondered what they do? Let's find out! kotlin.christmas
코틀린의 collection 의 Map Specific Operations 에 대해 살펴보자. 원문 https://kotlinlang.org/docs/reference/map-operations.html 을 보며 정리. Retrieving keys and values get() [ ] getValue() getOrElse() getOrDefault() val numbersMap = mapOf("one" to 1, "two" to 2, "three" to 3) println(numbersMap.get("one")) // 1 println(numbersMap["one"]) // 1 println(numbersMap.getValue("two")) // 2 println(numbersMap.getOrDefaul..