大家好。
我的问题很简单,但我没有答案。下面你可以看到我的C ++代码 - 它有点大但很简单 - 当我用//std::cout<<yy<<endl; (commented)
运行代码时它运行不到1秒,当我取消注释该行运行大约2分钟时(我说话)关于Release因为在Debug中它运行的时间更多)。请注意那条线只产生很少的输出线(所以问题不在于程序必须多次调用“cout”)谢谢大家。这是我的代码:
#include <cstdlib>
#include <iostream>
using namespace std;
struct cell {
int x;
int y;
};
int main(int argc, char** argv) {
cell vector[8];
unsigned long int yy=0;
for (int aaa = 0; aaa < 8; aaa++) {
vector[0].x = aaa;
for (int aab = 0; aab < 8; aab++) {
vector[0].y = aab;
for (int aac = 0; aac < 8; aac++) {
vector[1].x = aac;
for (int aad = 0; aad < 8; aad++) {
vector[1].y = aad;
for (int aae = 0; aae < 8; aae++) {
vector[2].x = aae;
for (int aaf = 0; aaf < 8; aaf++) {
vector[2].y = aaf;
for (int aag = 0; aag < 8; aag++) {
vector[3].x = aag;
for (int aah = 0; aah < 8; aah++) {
vector[3].y = aah;
for (int aai = 0; aai < 8; aai++) {
vector[4].x = aai;
for (int aaj = 0; aaj < 8; aaj++) {
vector[4].y = aaj;
for (int aak = 0; aak < 8; aak++) {
vector[5].x = aak;
for (int aal = 0; aal < 8; aal++) {
vector[5].y = aal;
yy++;
if(yy%10000000000==0){
vector[5].y = aal-1;
//std::cout<<yy<<endl;
}
}
}
}
}
}
}
}
}
}
}
}
}
std::cout<<yy<<endl;
std::cout<<vector[5].y<<endl;
return 0;
}
答案 0 :(得分:3)
这大部分都是一个简单的优化问题:只要您不从循环中产生任何输出,编译器就会确定循环基本上是死代码,并且根本不执行它们所有。它必须做一些预计算以确定vector[5].y
在循环之后会有的值,但是它可以在编译时完全完成,所以在运行时,它基本上只是打印出固定数字。
当你在循环中产生可见的输出时,编译器就不能消除它们的执行,所以代码的运行速度要慢得多。