gpt4 book ai didi

go - 将十六进制更改为字符串

转载 作者:IT王子 更新时间:2023-10-29 02:15:02 26 4
gpt4 key购买 nike

我正在学习 Golang 教程,我在这部分

package main

import (
"fmt"
"math/rand"
)

func main() {
fmt.Println("My favorite number is", rand.Seed)
}

这将返回 我最喜欢的号码是 0xb1c20

我一直在阅读 https://golang.org/pkg/math/rand/#Seed但我仍然对如何使用它而不是显示十六进制显示字符串感到困惑

最佳答案

math/rand.Seed是一个函数;您正在打印函数在内存中的位置。您可能打算执行以下操作:

package main

import (
"fmt"
"math/rand"
)

func main() {
rand.Seed(234) // replace with your seed value, or set the seed based off
// of the current time
fmt.Println("My favorite number is", rand.Int())
}

关于go - 将十六进制更改为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35245642/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com