首页 > 代码库 > Lua随机问题
Lua随机问题
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随机问题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。