生成随机数可用math/rand包,时间戳引用time包,下面以时间戳为种子生成随机数的代码。

golang 以时间戳为种子生成随机数的代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package main

import (
    "fmt"
    "math/rand"
    "time"
)

func main() {
    fmt.Println(time.Now().Unix(), time.Now().UnixNano())
    r := rand.New(rand.NewSource(time.Now().Unix()))
    for i := 0; i < 10; i++ {
        fmt.Println(r.Intn(100))
    }
}

上面的例子会输出0~99 的随机整数

1
2
3
4
5
6
7
8
9
10
11
1440384388 1440384388207838564
15
68
8
83
35
67
0
66
36
84

每次运行的结果都不一样。

本文网址: https://golangnote.com/topic/25.html 转摘请注明来源