有人可以解釋我在具有時鐘功能的兩個for循環之間的延遲上下文中的確切交互。在cout語句中,for1如何與for2進行交互(640000000上的30)?具有時鐘功能的for循環之間的交互作用?
start=clock();
cout<<endl<<start<<endl;
for(delay=0; delay<30; delay++)
for(i=0; i<640000000; i++);
end=clock();
cout<<end<<endl;
cout<<"Num of ticks for non reg-loop: ";
cout<<end-start<<'\n';
你能更清楚地知道你在找什麼嗎? – VeeArr 2010-06-10 18:03:18
我不明白如何循環完成30 * 640000000迭代,這是32位編譯器不可能處理? – highlevelcoder 2010-06-10 18:11:55
爲什麼不可能? – Blindy 2010-06-10 18:15:34