[Dart] Variables
[Ko]
- 변수 설정 형식 : var myName = ‘aaa’;
- var : 변수를 넣을 박스
- myName : 변수를 넣은 박스의 이름
- = : 데이터를 할당
- ; : 코드 라인의 끝
- ‘aaa’ : 변수에 넣을 데이터, dart에서는 “ 보다는 일반적으로 ‘ 를 사용함.
===============================================================
[En]
- Variable setting format: var myName = ‘aaa’;
- var: Box to put variable
- myName: The name of the box containing the variable
- =: Allocate data
- ; : End of line of code
- ‘Aaa’: Data to be put into a variable, in dart, ‘is generally used rather than“.
'플러터(Flutter) > 다트(Dart)' 카테고리의 다른 글
[Dart] Functions with return data type (0) | 2020.03.18 |
---|---|
[Dart] Functions with argument (0) | 2020.03.18 |
[Dart] Data Types (0) | 2020.03.18 |
[Dart] String interpolation (0) | 2020.03.18 |
[Dart] Functions (0) | 2020.03.18 |