摘要:
privatestaticvoidWrong(){Stopwatchwatch=newStopwatch();watch.Start();Parallel.For(0,500000,p=>{intc=p;});watch.Stop();longtempParalleTime=watch.ElapsedMilliseconds;watch.Restart();for(inti=0;i<500000;i++){intc=i;}watch.Stop();Console.WriteLine("顺序执行用时:"+watch.ElapsedMilliseconds);Con 阅读全文
摘要:
又一个有趣的面试题里看到的一道题目,原因看过《深入计算机体系结构》应该就能明白。题目如下有两个相同功能代码如下,请在在A,B,C是什么的情况下,请给出三个原因case 1比case 2快,还有三个原因case 2会比case 1要执行的快。(不考虑编译器优化) case 1 fo... 阅读全文