C#的Stopwatch计时时间用了Reset();它还是累加计时了?
stringstr=null;intcount=0;Stopwatchjishi=newStopwatch();//创建计时对象do{jishi.Start();//开始...
string str = null;
int count = 0;
Stopwatch jishi = new Stopwatch(); //创建计时对象
do
{
jishi.Start(); //开始计时
for (int i = 0; i < 10000; i++)
{
str += i;
}
jishi.Stop(); //计时结束
count++;
Console.WriteLine(jishi.Elapsed); //获取当前实例运行的总时间
jishi.Reset(); //将运行时间置零
} while (count <10);
运行结果如图:
还是说,这个计时时间并没累加。之所以循环到后面,循环一次的时间变大是因为别的缘故? 展开
int count = 0;
Stopwatch jishi = new Stopwatch(); //创建计时对象
do
{
jishi.Start(); //开始计时
for (int i = 0; i < 10000; i++)
{
str += i;
}
jishi.Stop(); //计时结束
count++;
Console.WriteLine(jishi.Elapsed); //获取当前实例运行的总时间
jishi.Reset(); //将运行时间置零
} while (count <10);
运行结果如图:
还是说,这个计时时间并没累加。之所以循环到后面,循环一次的时间变大是因为别的缘故? 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询