1 Star 0 Fork 0

muyouking / GoTools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
rand.go 166 Bytes
一键复制 编辑 原始数据 按行查看 历史
muyouking 提交于 2020-07-08 16:22 . rand 随机数
package Tools
import (
"math/rand"
"time"
)
//生产随机数
//i 哪个范围内
func H_randInt(i int)int {
rand.Seed(time.Now().Unix())
return rand.Intn(i)
}
Go
1
https://gitee.com/muyouking/GoTools.git
git@gitee.com:muyouking/GoTools.git
muyouking
GoTools
GoTools
master

搜索帮助