ActionScript 3 带范围的随机数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 带范围的随机数相关的知识,希望对你有一定的参考价值。

function randomNumber(low:int = 0, high:int = 0):int{
	var low:int = low;
	var high:int = high;
					
	if(low == high)
		throw new Error("low & high value must be the same");			
	
        return Math.round(Math.random() * (high - low)) + low;
}

以上是关于ActionScript 3 带范围的随机数的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 自定义范围内的随机数

ActionScript 3 [AS3]在一个范围内创建一个随机数

ActionScript 3 随机范围

ActionScript 3 随机范围

ActionScript 3 AS3随机范围

ActionScript 3 ActionScript 3 - 随机播放(随机不重复)