常用方法 均為靜態
1、random 預設下返回 0 到 1 的隨機數(前閉後開)
2、如取 2->7 之間的隨機數:
int a = (int)(2 + (5+1)*Math.random());
//+1的原因:(int)會捨去小數,且 random 的取值前閉後開,如果不 +1 最大隻能取到6
常用方法 均為靜態
1、random 預設下返回 0 到 1 的隨機數(前閉後開)
2、如取 2->7 之間的隨機數:
int a = (int)(2 + (5+1)*Math.random());
//+1的原因:(int)會捨去小數,且 random 的取值前閉後開,如果不 +1 最大隻能取到6