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
- 플러터
- python
- text
- textstyle
- List
- 파이썬
- set
- map
- Android
- 함수
- Collection
- 다트
- variable
- crawler
- kotlin
- animation
- ML
- 콜렉션
- package
- 크롤러
- 웹크롤러
- import
- Class
- Flutter
- 클래스
- texttheme
- DART
- pushnamed
- function
- 코틀린
Archives
- Today
- Total
조용한 담장
Dart : print 본문
dart print()
Dart 의 프린트 함수
문자열 출력, 변수 값 출력.
$variableName (or ${expression}) 를 사용하여 String 에 변수 값 포함하여 출력.
print('hello');
var world = 'world';
print('hello $world');
print('hello ' + world);
var helloWorld = ['hello', 'world'];
print(helloWorld);
print('${helloWorld[0]} ${helloWorld.elementAt(1)} !!!');
print(helloWorld.length);
print('${helloWorld.length}');
// Output:
// hello
// hello world
// hello world
// [hello, world]
// hello world !!!
// 2
// 2
'Dart' 카테고리의 다른 글
Dart : Generics (0) | 2019.11.22 |
---|---|
Dart : Collections (0) | 2019.11.19 |
Dart : Asynchronous programming (0) | 2019.10.24 |
Dart : Class (0) | 2019.10.02 |
Dart : Exceptions (0) | 2019.09.20 |
Comments