欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ASP.NET 返回随机数实现代码

程序员文章站 2024-03-09 15:11:41
复制代码 代码如下: /// /// 返回随机数 /// ///
复制代码 代码如下:

/// <summary>
/// 返回随机数
/// </summary>
/// <param name="vcodenum"></param>
/// <returns></returns>
public string rndnum(int vcodenum)
{
string vchar = "0,1,2,3,4,5,6,7,8,9";
string[] vcarray = vchar.split(',');
string vnum = "";//由于字符串很短,就不用stringbuilder了
int temp = -1;//记录上次随机数值,尽量避免生产几个一样的随机数
//采用一个简单的算法以保证生成随机数的不同
random rand = new random();
for (int i = 1; i < vcodenum + 1; i++)
{
if (temp != -1)
{
rand = new random(i * temp * unchecked((int)datetime.now.ticks));
}
//int t = rand.next(35) ;
int t = rand.next(9);
if (temp != -1 && temp == t)
{
return rndnum(vcodenum);
}
temp = t;
vnum += vcarray[t];
}
return vnum;
}

调用时只需要 string code = rndnum(4);
这样取得了4位随机数.
如果需要字母随机数,则
string vchar = "0,1,2,3,4,5,6,7,8,9,a,b";把字母加上去.
同时修改int t = rand.next(9);中的9改成vchar的长度但可.