随笔 - 2146  文章 - 19 评论 - 11846 阅读 - 1267万


成员:
Next();       //获取 0 .. int.MaxValue 的 int 随机数; 可指定范围
NextBytes();  //获取 0 .. 255 的随机数并填充字节数组
NextDouble(); //获取 0 .. 1 的 double 随机数


构造函数:
//不指定随机种子, 则默认有系统时钟生成种子
protected void Button1_Click(object sender, EventArgs e)
{
    Random r = new Random();
    int n1 = r.Next();
    int n2 = r.Next();

    TextBox1.Text = string.Concat(n1, "\n", n2);
}

//种子值相同时, 其随机序列也相同
protected void Button2_Click(object sender, EventArgs e)
{
    Random r1 = new Random(1);
    Random r2 = new Random(1);
    Random r3 = new Random(2);

    byte[] bs1 = new byte[10];
    byte[] bs2 = new byte[10];
    byte[] bs3 = new byte[10];

    r1.NextBytes(bs1);
    r2.NextBytes(bs2);
    r3.NextBytes(bs3);

    string s1 = string.Join(", ", bs1); //70, 208, 134, 130, 64, 151, 228, 163, 149, 207
    string s2 = string.Join(", ", bs2); //70, 208, 134, 130, 64, 151, 228, 163, 149, 207
    string s3 = string.Join(", ", bs3); //113, 147, 198, 149, 36, 185, 227, 111, 124, 56

    TextBox1.Text = string.Concat(s1, "\n", s2, "\n", s3);
}


练习:
protected void Button1_Click(object sender, EventArgs e)
{
    Random r = new Random(0);

    int n1 = r.Next();           //1559595546
    int n2 = r.Next(10);         //8
    int n3 = r.Next(1000, 2000); //1768

    TextBox1.Text = string.Concat(n1, "\n", n2, "\n", n3);
}

protected void Button2_Click(object sender, EventArgs e)
{
    Random r = new Random(0);

    double f;
    string str = "";
    for (int i = 0; i < 10; i++)
    {
        f = r.NextDouble();
        str += f.ToString("0.00 "); //0.73 0.82 0.77 0.56 0.21 0.56 0.91 0.44 0.98 0.27
    }
    TextBox1.Text = str;
}

posted on   万一  阅读(1936)  评论(0编辑  收藏  举报
编辑推荐:
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
历史上的今天:
2010-01-03 GdiPlus[60]: 图像(十二) IGPImageAttributes 的更多方法
2009-01-03 C# 语法练习(15): 接口
2009-01-03 C# 语法练习(14): 类[六] - 事件
2009-01-03 如何在 "万一的 Delphi 博客" 回复自动格式化的着色代码?
2009-01-03 C# 语法练习(13): 类[五] - 索引器
2008-01-03 Delphi 中的 XMLDocument 类详解(14) - 遍历 XML 文件
2008-01-03 Delphi 中的 XMLDocument 类详解(13) - 关于 XML 属性


点击右上角即可分享
微信分享提示