Visual C#中随机数使用实例

关键词Visual    C#中随机数使用实例                                          

 

随机数的使用很普遍,可用它随机显示图片,用它防止无聊的人在论坛灌水还可以用来加密信息等等。本文讨论如何在一段数字区间内随机生成若干个互不相同的随机数,比如在从120间随机生成6个互不相同的整数,并通过此文介绍Visual c#中随机数的用法。

 

.net.Frameword中提供了一个专门产生随机数的类System.Random,此类默认情况下已被导入,编程过程中可以直接使用。我们知道,计算机并不能产生完全随机的数字,它生成的数字被称为伪随机数,它是以相同的概率从一组有限的数字中选取的,所选的数字并不具有完全的随机性,但就实用而言,其随机程度已经足够了。

 

我们可以用以下两种方法初始化一个随机数发生器;

 

第一种方法不指定随机种子,系统自动选取当前时前作随机种子:

 

Random ra=new Random();

 

第二种方法是指定一个int型的参数作为随机种子:

 

int iSeed=6;

 

Random ra=new Random(iSeed);

 

下面我们要用到Random.Next()方法产生随机数。

 

ra.Next();

 

它返回一个大于或等于零而小于2,147,483,647的数,这并不满足我们的需要,下面我们介绍它的重载函数和其它一些方法。

 

         public virtual int Next(int);

 

用法:ra.next(20)

 

返回一个小于所指定最大值(此处为20)的正随机数。

 

public virtual int Next(int minValue, int maxValue);

 

用法:ra.next(1,20)

 

返回一个指定范围内(此处为1-20之间)的随机数,我们在下面的实例中会用到此函数。

 

System.Random还有几个方法分别是:

 

公共方法:

 

NextBytes用随机数填充指定字节数组的元素。

 

NextDouble返回一个介于 0.0 1.0 之间的随机数。

 

受保护的方法:

 

Sample返回一个介于 0.0 1.0 之间的随机数,只允许子类对象访问。

 

以上介绍了随机数的基本用法,下面我们用一个实例来做更进一步的介绍。要在一段数字区间内随机生成若干个互不相同的随机数,比如在从120间随机生成6个互不相同的整数。

 

主要是下面两个函数getRandomNumgetNum:

 

public int[] getRandomNum(int num,int minValue,int maxValue)

 

{

 

Random ra=new Random(unchecked((int)DateTime.Now.Ticks));

 

int[] arrNum=new int[num];

 

int tmp=0;

 

for (int i=0;i<=num-1;i++){

 

tmp=ra.Next(minValue,maxValue); //随机取数

 

arrNum[i]=getNum(arrNum,tmp,minValue,maxValue,ra); //取出值赋到数组中

 

}

 

return arrNum;

 

}

 

getRandomNum即是在区间[minValue,maxValue]取出num个互不相同的随机数,返回的数组包含着结果。

 

其中随机数是这样创建的 Random ra=new Random(unchecked((int)DateTime.Now.Ticks));为什么不用Random ra=new Random();(系统自动选取当前时前作随机种子)呢?

 

用系统时间做随机种子并不保险,如果应用程序在一个较快的计算机上运行,则该计算机的系统时钟可能没有时间在此构造函数的调用之间进行更改,Random 的不同实例的种子值可能相同。这种情况下,我们就需要另外的算法来保证产生的数字的随机性。所以为了保证产生的随机数足够“随机”,我们不得不使用复杂一点的方法来获得随机种子。在上面的这段程序中,我们首先使用系统时间作为随机种子,然后将上一次产生的随机数跟循环变量和一个与系统时间有关的整型参数相乘,以之作为随机种子,从而得到了每次都不同的随机种子,保证了产生足够“随机”的随机数。

 

函数getNum是一递归,用它来检测生成的随机数是否有重复,如果取出来的数字和已取得的数字有重复就重新随机获取。值得注意的是要用一同一个随机数实例生成,所以ra要作为参数传入getNum中,否则生成的数字会有重复。

 

public int getNum(int[] arrNum,int tmp,int minValue,int maxValue,Random ra){

 

int n=0;

 

while (n<=arrNum.Length-1)

 

{

 

if (arrNum[n]==tmp) //利用循环判断是否有重复

 

{

 

tmp=ra.Next(minValue,maxValue); //重新随机获取。

 

getNum(arrNum,tmp,minValue,maxValue,ra);//递归:如果取出来的数字和已取得的数字有重复就         重新随机获取。

 

}

 

n++;

 

}

 

return tmp;

 

}

 

最后就是要显示出来,当点击一个button时取出的数字显示在一个label中。

 

private void button1_Click(object sender, System.EventArgs e)

 

{

 

int[] arr=getRandomNum(6,1,20); //120中取出6个互不相同的随机数

 

int i=0;

 

string temp="";

 

while (i<=arr.Length-1){

 

temp+=arr[i].ToString()+"/n";

 

i++;

 

}

 

label1.Text=temp; //显示在label1

 

}

 

随机数的作用不止如此,读者可用它进行游戏开发,安全验证等等,这有待读者去开发和实践。

 

原码如下:

 

using System;

 

using System.Drawing;

 

using System.Collections;

 

using System.ComponentModel;

 

using System.Windows.Forms;

 

using System.Data;

 

namespace random

 

{

 

///

 

/// Form1 的摘要说明。

 

///

 

public class Form1 : System.Windows.Forms.Form

 

{

 

private System.Windows.Forms.Button button1;

 

private System.Windows.Forms.Label label1;

 

///

 

/// 必需的设计器变量。

 

///

 

private System.ComponentModel.Container components = null;

 

public Form1()

 

{

 

//

 

// Windows 窗体设计器支持所必需的

 

//

 

InitializeComponent();

 

//

 

// TODO: InitializeComponent 调用后添加任何构造函数代码

 

//

 

}

 

///

 

/// 清理所有正在使用的资源。

 

///

 

protected override void Dispose( bool disposing )

 

{

 

if( disposing )

 

{

 

if (components != null)

 

{

 

components.Dispose();

 

}

 

}

 

base.Dispose( disposing );

 

}

 

#region Windows Form Designer generated code

 

///

 

/// 设计器支持所需的方法 - 不要使用代码编辑器修改

 

/// 此方法的内容。

 

///

 

private void InitializeComponent()

 

{

 

this.button1 = new System.Windows.Forms.Button();

 

this.label1 = new System.Windows.Forms.Label();

 

this.SuspendLayout();

 

//

 

// button1

 

//

 

this.button1.Location = new System.Drawing.Point(96, 32);

 

this.button1.Name = "button1";

 

this.button1.TabIndex = 0;

 

this.button1.Text = "随机数";

 

this.button1.Click += new System.EventHandler(this.button1_Click);

 

//

 

// label1

 

//

 

this.label1.BackColor = System.Drawing.SystemColors.Desktop;

 

this.label1.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;

 

this.label1.Location = new System.Drawing.Point(49, 112);

 

this.label1.Name = "label1";

 

this.label1.Size = new System.Drawing.Size(168, 80);

 

this.label1.TabIndex = 1;

 

this.label1.Text = "label1";

 

//

 

// Form1

 

//

 

this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);

 

this.ClientSize = new System.Drawing.Size(292, 273);

 

this.Controls.AddRange(new System.Windows.Forms.Control[] {

 

this.label1,

 

this.button1});

 

this.Name = "Form1";

 

this.Text = "Form1";

 

this.ResumeLayout(false);

 

}

 

#endregion

 

///

 

/// 应用程序的主入口点。

 

///

 

[STAThread]

 

static void Main()

 

{

 

Application.Run(new Form1());

 

}

 

private void button1_Click(object sender, System.EventArgs e)

 

{

 

int[] arr=getRandomNum(6,1,20);

 

int i=0;

 

string temp="";

 

while (i<=arr.Length-1){

 

temp+=arr[i].ToString()+"/n";

 

i++;

 

}

 

label1.Text=temp;

 

}

 

public int[] getRandomNum(int num,int minValue,int maxValue){

 

Random ra=new Random(unchecked((int)DateTime.Now.Ticks));

 

int[] arrNum=new int[num];

 

int tmp=0;

 

for (int i=0;i<=num-1;i++){

 

tmp=ra.Next(minValue,maxValue);

 

arrNum[i]=getNum(arrNum,tmp,minValue,maxValue,ra);

 

}

 

return arrNum;

 

}

 

public int getNum(int[] arrNum,int tmp,int minValue,int maxValue,Random ra){

 

//Random ra=new Random(unchecked((int)DateTime.Now.Ticks));

 

int n=0;

 

while (n<=arrNum.Length-1)

 

{

 

if (arrNum[n]==tmp)

 

{

 

tmp=ra.Next(minValue,maxValue);

 

getNum(arrNum,tmp,minValue,maxValue,ra);

 

}

 

n++;

 

}

 

return tmp;

 

}

 

}

 

}

 

作者: terrysh

http://terrysh.bokee.com/4396429.html

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值