Flutter/Dart:生成最小值和最大值之间的随机数
在 Dart(以及 Flutter)中生成给定范围内的随机整数的几个示例。...int a = randomGen(1, 10);
print(a);
}
输出:
8 // you may get 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
您得到的结果可能包含最小值...、最大值或此范围内的值。...示例 2:使用 Random.nextDouble() 和 floor() 方法
代码:
import 'dart:math';
randomGen(min, max) {
// nextDouble...每次重新执行代码时都会改变)。