일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- map
- Class
- animation
- Flutter
- 플러터
- import
- Yocto
- 웹크롤러
- ML
- python
- 파이썬
- DART
- kotlin
- Android
- 다트
- Collection
- List
- textstyle
- 클래스
- 콜렉션
- 크롤러
- variable
- package
- crawler
- 코틀린
- 함수
- function
- pushnamed
- text
- set
- Today
- Total
목록List (3)
조용한 담장
코틀린의 collection 의 List Specific Operations 에 대해 살펴보자. 원문 https://kotlinlang.org/docs/reference/list-operations.html 을 보며 정리. Retrieving elements by index index 가 list 의 크기보다 클때 발생하는 exception 을 피하는 함수 getOrElse() getOrNull() val numbers = listOf(1, 2, 3, 4) println(numbers.get(0)) // 1 println(numbers[0]) // 1 //numbers.get(5) // exception! println(numbers.getOrNull(5)) // null println(numbers.g..
코틀린(kotlin) 의 collection (set, list, map) 을 살펴보자. 원문 https://kotlinlang.org/docs/reference/collections-overview.html, https://kotlinlang.org/docs/reference/constructing-collections.html 을 보며 정리. Collection Types 코틀린은 standard library 를 통해 collection type 인 set, list, map 세개를 제공한다. 크게 두개의 인터페이스가 있다. 읽기 전용(read-only) 인터페이스 : collection element 에 접근하기 위한 기능을 제공 변경 가능(mutable) 인터페이스 : collection ele..
Dart 의 collections 자료형 클래스인 List, Set, Map 을 살펴보자. List List class List 는 두가지 타입이 있다. 길이 고정된 리스트 : 리스트의 길이를 변경하는 동작에 에러를 발생시킨다. new List(n), List(n) 길이 증가 가능한 리스트. List(), [] Constructors List([int length ]) : length 길이의 null 로 채워진 리스트를 생성한다. List.filled(int length, E fill, { bool growable: false }) : 각 element 가 fill 값을 length 길이의 리스트를 생성한다. List.from(Iterable elements, { bool growable: true })..