0

我在一个while循环中运行这个代码大约10000次,我注意到timeSpent大约是4,除了第一次,大约是500,为什么?

Stopwatch s;
long price;
count = 10000;
while (count!=0)
{
   s = Stopwatch.StartNew();

   price = classA.Method(..some inputs...);  //this method do some iterations to return back a long given some inputs

   s.Stop();
   timeSpent = s.ElapsedTicks / (Stopwatch.Frequency / (1000L * 1000L));
   s.Reset();
   /*write the price, timeSpent and inputs into a .txt file*/
   count--;
}
4

1 回答 1

2

第一次调用方法时,它会从 IL 编译为本机代码。任何后续调用都会重新使用生成的本机代码。所以,一般来说,你会期望你第一次调用一个方法花费的时间最长。

不幸的是,很难证明这是原因,但这可以解释它。在进行基准测试/分析时,我已经多次看到同样的事情发生:第一次调用花费的时间最长。我通常通过丢弃第一次运行来解决这个问题。

当然,您调用的方法可能有副作用,获取资源并缓存它们,或者只是在第一次调用时才发生一次且仅发生的任何事情。这些只是我说很难确定的一些原因。

于 2012-12-28T05:21:50.977 回答