일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 코틀린
- 다트
- Collection
- package
- variable
- text
- import
- python
- DART
- 콜렉션
- 플러터
- 클래스
- 크롤러
- kotlin
- function
- Class
- animation
- Yocto
- pushnamed
- Flutter
- 웹크롤러
- 파이썬
- set
- List
- map
- crawler
- ML
- Android
- 함수
- textstyle
- Today
- Total
목록kotlin (40)
조용한 담장
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..
코틀린의 collection 의 Set Specific Operations 에 대해 살펴보자. 원문 https://kotlinlang.org/docs/reference/set-operations.html 을 보며 정리. 두개의 collection 을 합칠때는 union() 함수를 사용한다. infix a union b 로도 사용한다. intersect() 는 두 collection 에 모두 있는 element 를 찾는다. infix a intersect b subtract() 는 한쪽 collection 에만 있는 element 를 찾는다. infix a subtract b val numbers = setOf("one", "two", "three") println(numbers union setOf("f..