duanaigua4033 2018-05-10 13:39
浏览 89
已采纳

如何在golang中获取随机数样本? [关闭]

Or I have to use straightforward way like:

var arr []int

for i := 0; i < 5; i++ {
    arr = append(arr, rand.Intn(100))
}
  • 写回答

1条回答 默认 最新

  • douchan4674 2018-05-10 13:48
    关注

    What you did is clean and fast enough. What you could improve on it is to pre-allocate the slice and fill it using a for.. range loop like this:

    s := make([]int, 5)
    for i := range s {
        s[i] = rand.Intn(100)
    }
    

    The math/rand package also has a rand.Read() function which fills a slice with random bytes. So if you want to fill a []byte slice with random data, this is all it takes:

    s := make([]byte, 100)
    rand.Read(s) // This never returns an error
    

    Another interesting way would be to take advantage of rand.Rand being an io.Reader. Which means it has a Read() method which fills a []byte with random data.

    This combined with the encoding/binary package, you can "fill" variables with random data. Create and pass a rand.Rand to the binary.Read() function as the source, and that's it.

    This is how it would look like:

    r := rand.New(rand.NewSource(time.Now().UnixNano()))
    
    s := make([]int32, 5)
    err := binary.Read(r, binary.BigEndian, &s)
    if err != nil {
        panic(err)
    }
    fmt.Println(s)
    

    Output:

    [203443513 1611652563 -235795288 8294855 -802604260]
    

    This is "cool" enough to even fill structs for example:

    var point struct{ X, Y int16 }
    err = binary.Read(r, binary.BigEndian, &point)
    if err != nil {
        panic(err)
    }
    fmt.Printf("%+v", point)
    

    Output:

    {X:-15471 Y:2619}
    

    Try these examples on the Go Playground.

    One handicap of using binary.Read() is that–understandably–it can only fill values of fixed-size types, and the most famous exception is the common int type, whose size is not fixed (architecture dependent). So you can't fill an []int slice or a struct with a field of int type. That's why I used int32 and int16 types in the above examples.

    Of course in these solutions you could not limit the range of random numbers that are used to fill your variables. For that, the initial loop is still easier.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#python#的问题:求帮写python代码
  • ¥15 LiBeAs的带隙等于0.997eV,计算阴离子的N和P
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 来真人,不要ai!matlab有关常微分方程的问题求解决,
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?