需要的头文件:<stdlib.h>,<time.h>
库函数:srand;rand;time
方法:1.首先设置种子srand(unsigned)time(NULL));使用当前时间作为种子是多数人的习惯做法.
2.产生随机数:rand()可以产生一个随机数;范围在0~RAND_MAX(32767)之间;如果要产生一个[min,max]之间的数,可以这样:rand()%(max) + min;
例子:生成指定位的任意数字串
#i nclude <stdlib.h>
#i nclude <time.h>
// const char CCH[] = "_0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
void GetRandStr(int iNum,CString& strRet)
{
CString strTemp;
const char CCH[] = "0123456789";
for (int i = 0; i < iNum; ++i)
{
srand((unsigned)time(NULL)+i);
int x = rand()%10;
strTemp.Format("%c",CCH[x]);
strRet = strRet + strTemp;
}
}
注意,上面的例子中的种子是用时间加上循环变量构成的,如果只用时间的话,由于程序执行十分快,而时钟又不是非常精确,这有可能导致每次循环中的种子时间是一样的,产生出的随机数也是一样的.