码迷,mamicode.com
首页 > 其他好文 > 详细

Lua随机问题

时间:2017-05-20 01:02:01      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:span   math   mat   作用   dom   运行   问题   blog   rand   

1)lua随机math.random 的结果前三个不可靠。
2)math.random(os.time())一定要写在程序最开始的时候,不要写在循环体内部。写在循环体内部的math.random(os.time())无法起到每次运行程序,随机生成随机种子的作用。
e.g.1
math.randomseed(os.time())
for i=1,10 do
print(math.random(10))
end

结果:

2
10
5
8
6
10
6
10
3
1
[Finished in 0.1s]



e.g.2

for i=1,10 do
math.randomseed(os.time())
print(math.random(10))
end

结果:

1
1
1
1
1
1
1
1
1
1
[Finished in 0.1s]

 

 

Lua随机问题

标签:span   math   mat   作用   dom   运行   问题   blog   rand   

原文地址:http://www.cnblogs.com/Fallever/p/6880728.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!