math/rand.Seed是一个函数;您正在打印函数在内存中的位置。您可能打算执行以下操作:package mainimport ( "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())}