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 网络科学导论,网络控制
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)