250x250
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 |
Tags
- 계측
- appbar
- textview
- Flutter
- TEST
- DART
- 테스트
- tabbar
- viewmodel
- drift
- scroll
- Compose
- LifeCycle
- android
- Dialog
- livedata
- intent
- 앱바
- binding
- data
- Navigation
- activity
- 안드로이드
- ScrollView
- Button
- textfield
- CustomScrollView
- Coroutines
- 앱
- Kotlin
Archives
- Today
- Total
Study Record
[Dart] 난수 생성하기 본문
728x90
✍ 난수 생성하기
Dart 에서 난수를 생성하려면 Random() 클래스를 사용한다.
import 'dart:math';
void main(){
final random = Random();
}
3가지 타입(bool, double, int)의 난수를 생성할 수 있다.
var intValue = Random().nextInt(10); // intValue is >= 0 and < 10.
intValue = Random().nextInt(100) + 50; // intValue is >= 50 and < 150.
var doubleValue = Random().nextDouble(); // doubleValue is >= 0.0 and < 1.0.
doubleValue = Random().nextDouble() * 256; // doubleValue is >= 0.0 and < 256.0.
var boolValue = Random().nextBool(); // true or false, with equal chance.
728x90
'Dart' 카테고리의 다른 글
[Dart] 간결한 if 문 (c ? ep1 : ep2 , ep1 ?? ep2) (0) | 2023.03.16 |
---|---|
[Dart] .. (0) | 2023.03.09 |
[Dart] 비동기 프로그래밍 (0) | 2023.01.16 |
[Dart] 함수형 프로그래밍 (0) | 2023.01.15 |
[Dart] 객체 지향 프로그래밍 (1) | 2023.01.12 |