using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace random
{
class Program
{
static void Main(string[] args)
{
for (int i = 0; i < 100; i++)
{
sj s = new sj();
int N = s.sjff(1, 100);
Console.WriteLine(n);
}
Console.ReadKey();
}
public class sj
{
public int sjff(int a, int b)
{
Random r = new Random();
int N = r.Next(a, b);
return N;
}
}
}
}
简单代码不解释了。 Random 也不见得是完全随机,估计是根据毫秒为单位的吧? 用来测试机器性能不错,重复越多性能越好。 有大神出来深入解释下原理没?