如何在 Golang 中生成随机浮点数?

在 golang 中生成随机浮点数,有两种常用方法:使用 math/rand 包,调用 rand.float64() 生成 [0, 1) 范围内的浮点数。使用 crypto/rand 包,生成随机字节数组后转换为浮点数,适用于安全随机性场景

golang 中生成随机浮点数,有两种常用方法:使用 math/rand 包,调用 rand.float64() 生成 [0, 1) 范围内的浮点数。使用 crypto/rand 包,生成随机字节数组后转换为浮点数,适用于安全随机性场景。

如何在 Golang 中生成随机浮点数?

如何在 Golang 中生成随机浮点数?

在 Golang 中生成随机浮点数的方法有多种,今天我们将介绍两种最常用的方法。

使用 math/rand 包

math/rand 包提供了多种生成随机数的方法,包括生成 [0, 1) 范围内的随机浮点数。以下是如何使用它:

package main

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

func main() {
    // 设置随机数种子
    rand.Seed(time.Now().UnixNano())

    // 生成随机浮点数
    randomFloat := rand.Float64()

    fmt.Println(randomFloat) // 输出:0.3456789012345678
}

登录后复制

rand.Float64() 会生成一个 [0, 1) 范围内的随机浮点数。

使用 crypto/rand 包

crypto/rand 包用于生成安全随机数,也非常适合生成随机浮点数。以下是它的使用方法:

package main

import (
    "crypto/rand"
    "encoding/binary"
    "fmt"
)

func main() {
    // 生成随机字节数组
    bytes := make([]byte, 8)
    _, err := rand.Read(bytes)
    if err != nil {
        panic(err)
    }

    // 将字节数组转换成浮点数
    bits := binary.BigEndian.Uint64(bytes)
    randomFloat := float64(bits) / float64(1<<64)

    fmt.Println(randomFloat) // 输出:0.3456789012345678
}

登录后复制

crypto/rand.Read() 会生成一个随机字节数组,然后我们将其转换成一个浮点数。

实战案例

假设我们有一个需要生成随机折扣的电商应用。我们可以使用以下代码:

package main

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

func main() {
    // 设置随机数种子
    rand.Seed(time.Now().UnixNano())

    // 生成随机折扣(0.01 到 0.5)
    discount := 0.01 + rand.Float64() * 0.49

    fmt.Println(discount) // 输出:0.23456789012345678
}

登录后复制

这个代码会生成一个 [0.01, 0.5) 范围内的随机浮点数,可以作为随机折扣使用。

以上就是如何在 Golang 中生成随机浮点数?的详细内容,更多请关注叮当号网其它相关文章!

文章来自互联网,只做分享使用。发布者:张大嘴,转转请注明出处:https://www.dingdanghao.com/article/480649.html

(0)
上一篇 2024-05-13 21:20
下一篇 2024-05-13 21:20

相关推荐

联系我们

在线咨询: QQ交谈

邮件:442814395@qq.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信公众号