gpt4 book ai didi

c# - 将随机整数拆分为 4 个随机字节

转载 作者:行者123 更新时间:2023-11-30 22:05:55 24 4
gpt4 key购买 nike

<分区>

你能否将一个随机无符号整数拆分为 4 个随机无符号字节,使它们的值 (0-255) 均匀分布?如果是,怎么办?

我在 C# 中尝试过,但似乎 0 比其他数字更常用。

byte[] bytes = BitConverter.GetBytes(u);

这似乎是这样做的:

byte[] array = new byte[4];
fixed (byte* ptr = array)
{
*(int*)ptr = value;
}
return array;

这里是一些随机整数: http://pastebin.com/sDWBqKJK

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