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 | 31 |
Tags
- 클래스
- variable
- List
- pushnamed
- kotlin
- animation
- 크롤러
- 웹크롤러
- textstyle
- 코틀린
- Collection
- map
- set
- Flutter
- Android
- 플러터
- rust
- ML
- 콜렉션
- package
- function
- 파이썬
- import
- Class
- 다트
- crawler
- 함수
- text
- DART
- python
Archives
- Today
- Total
조용한 담장
Dart : Operators 본문

Prefix and postfix increment and decrement operator
| ++ | -- |
a++; ++a; a--; --a;
Arithmetic operator
| + | - | * | / | ~/ | & |
a + b; a - b; a * b; a / b; a ~/ b; a % b;
Assignment operator
| = | ??= | ||||
| -= | += | *= | /= | ~/= | %= |
| <<= | >>= | &= | ^= | |= |
a = b; a ??= b;
a -= b; a += b; a *= b; a /= b; a ~/= b; a %= b;
a <<= b; a >>= b; a &= b; a ^= b; a |= b;
Bitwise, shift operator
| & | ~ | | | ^ | << | >> |
(a & b); (a & ~b); (a | b); (a ^ b); (a << 4); (a >> 4);
Equality and relational operator
| == | != | ||
| > | < | >= | <= |
a == b; a != b; a > b; a < b; a >= b; a <= b;
Conditional expression
| condition ? expr1 : expr2 | expr1 ?? expr2 |
c ? a : b; (a ?? b);
Type test and type cast operator
| as | is | is! |
if (a is T) a.b = 1; if (a is! T) = a.b = 1; (a as T).b = 1;
Logical operator
| ! | || | && |
!a; a || b; a && b;
Member access operator
| . | ?. |
T a; a.b; a?.b;
Cascade notation
| .. |
var a = classA();
a.b = 1
a.add(2);
classA()
..b = 1
..add(1)
'Dart' 카테고리의 다른 글
| Dart : Exceptions (0) | 2019.09.20 |
|---|---|
| Dart : Control flow statements (0) | 2019.09.17 |
| Dart 2.5 (0) | 2019.09.11 |
| Dart : Functions (1) | 2019.08.07 |
| Dart : Variables (0) | 2019.08.05 |
Comments