dart:math
库中Random
类的用法介绍如下。
随机 bool、int 或 double 值的生成器。
默认实现提供不适合加密目的的伪随机位流。
将Random.secure 构造函数用于加密目的。
要创建一个均匀分布在从 0(含)到最大(不包括)的范围内的非负随机整数,请使用 nextInt(int max) 。
var intValue = Random().nextInt(10); // Value is >= 0 and < 10.
intValue = Random().nextInt(100) + 50; // Value is >= 50 and < 150.
要创建在 0.0(含)到 1.0(不含)范围内均匀分布的非负随机浮点值,请使用 nextDouble 。
var doubleValue = Random().nextDouble(); // Value is >= 0.0 and < 1.0.
doubleValue = Random().nextDouble() * 256; // Value is >= 0.0 and < 256.0.
要创建随机布尔值,请使用 nextBool 。
var boolValue = Random().nextBool(); // true or false, with equal chance.
相关用法
- Dart Random.nextDouble用法及代码示例
- Dart Random.nextInt用法及代码示例
- Dart Random.nextBool用法及代码示例
- Dart RawSecureSocket.connect用法及代码示例
- Dart RawReceivePort.handler用法及代码示例
- Dart RawSecureSocket.secure用法及代码示例
- Dart RegExp.pattern用法及代码示例
- Dart RegExp.isCaseSensitive用法及代码示例
- Dart RegExp.allMatches用法及代码示例
- Dart RtcStatsReport.containsKey用法及代码示例
- Dart RtcStatsReport.containsValue用法及代码示例
- Dart RuneIterator.moveNext用法及代码示例
- Dart Runes用法及代码示例
- Dart RtcStatsReport.remove用法及代码示例
- Dart RtcStatsReport.putIfAbsent用法及代码示例
- Dart RtcStatsReport.addAll用法及代码示例
- Dart RegExp.hasMatch用法及代码示例
- Dart Rectangle构造函数用法及代码示例
- Dart RegExp用法及代码示例
- Dart RegExp构造函数用法及代码示例
- Dart RegExp.stringMatch用法及代码示例
- Dart Rectangle.fromPoints用法及代码示例
- Dart RtcStatsReport.clear用法及代码示例
- Dart RegExp.firstMatch用法及代码示例
- Dart RegExpMatch用法及代码示例
注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 Random class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。