1. 程式人生 > >lua math

lua math

src 單獨 png 偽隨機 dom 參考 image 兩個 rand

作為參考使用,如下圖所示:

感謝網友,憂郁的加菲貓,其網頁地址為:http://www.cnblogs.com/whiteyun/archive/2009/08/10/1543040.html

技術分享

關於math.random要註意下,單獨使用會產生偽隨機數,且有三種調用方式:

1. 不帶參數, 將產生 0 <= x < 1 範圍內的浮點數

2. 帶一個參數n,將產生 1 <= x <= n 範圍內的隨機數

3. 帶兩個參數m,n, 將產生 m <= x <= n 範圍內的隨機數

由於是偽隨機,所以在使用前,建議:

math.randomseed(os.time()) -- os.time 返回當前系統時間

math.random(10,30)

lua math