Study Record

[Dart] 난수 생성하기 본문

Dart

[Dart] 난수 생성하기

초코초코초코 2023. 2. 5. 01:32
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