일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- List
- 콜렉션
- Collection
- import
- 플러터
- 웹크롤러
- Class
- Yocto
- 클래스
- text
- variable
- 파이썬
- textstyle
- 크롤러
- Android
- ML
- animation
- map
- 다트
- 코틀린
- kotlin
- Flutter
- function
- package
- crawler
- DART
- 함수
- python
- pushnamed
- set
- Today
- Total
목록Dart (14)
조용한 담장
Null safety Sound null saftey 에 관해서는 여기. dart.dev/null-safety Sound null safety Information about Dart's upcoming null safety feature dart.dev 핵심은? Null safety principles Dart null safety support is based on the following three core design principles: Non-nullable by default. Unless you explicitly tell Dart that a variable can be null, it’s considered non-nullable. This default was chosen after ..
Dart 2.7 이 릴리즈 되었다. Extension method guide link characters package preview characters package null safety preview String firstName; DateTime? birthday; int? year = birthday?.year; Announcing Dart 2.7: A safer, more expressive Dart Announcing Dart 2.7: A safer, more expressive Dart Today we’re announcing the stable release of the Dart 2.7 SDK, with additional new capabilities for developers. It’s..
Dart 의 generator 를 살펴보자. generator 의 용도는 to lazily produce a sequence of values 코드상에서 선언된 순간에 바로 데이터가 처리되지 않고 실제로 사용할 때 데이터가 처리된다. 뒤늦게(실제 데이터가 필요할 때) 처리되는 방식은 동기식 과 비동기식이 있다. 둘 다 yield 를 통해 데이터를 전달하는데 return 과 다른점은 처리할 데이터가 있는 동안은 동작을 완료하지 않고 계속 수행하게 된다. Synchronous sync* 속성을 함수가 가지게 된다. Iterable object 를 리턴한다. import 'dart:io'; Iterable generatorSync(int n) sync* { int k=0; while (k < n) { yiel..
Dart 의 Generics 에 대해 살펴보자. Dart 의 API documentation 에서 데이터 타입이나 클래스의 정의를 보면 와 그 안에 'E, T, S, K, V' 같은 문자로 된 표현을 볼 수 있다. Generics 를 사용하면 변수 타입을 명확히 표현할 수 있다는 장점과 반복되는 코드를 줄일 수 있다는 장점이 있다. List 식의 표현으로 string 타입의 값을 가지는 리스트라는 명확한 선언을 통해 잘못된 타입의 값 삽입을 막을 수 있다. var names = List(); names.addAll(['Seth', 'Kathy', 'Lars']); names.add(42); // Error 여러가지 데이터 타입에 대해 동일한 동작을 해야 하는 코드가 있다면, 데이터 타입별로 코드를 생성할..