我确实对循环中的变量重新声明有疑问.
为什么在foor循环中声明对象不会触发重新声明错误?
在循环的每次迭代中,对象是否都被销毁并重新创建?
我正在插入示例代码
class DataBlock {
int id;
string data;
public:
DataBlock(int tid=0,const string &tdata=""){
id=tid;
data=tdata;
}
}
int main(int argc, char *argv[]){
ifstream file;
int temp_id; //temporary hold the the id read from the file
string temp_data; //temporary hold the data read from the file
set <DataBlock> s;
//check for command line input here
file.open(argv[1]);
//check for file open here
file >> temp_id >> temp_data;
while (!file.eof()){
DataBlock x(temp_id,temp_data); //Legit, But how's the workflow?
s.insert(x);
file >> temp_id >> temp_data;
}
file.close();
return 0;
}
解决方法:
Why declaring an object in a foor loop doesn’t trigger the redeclaration error?
当您在同一范围内两次(或多次)声明同一名称时,会发生重新声明错误.看起来像
int i = 5;
int i = 6; // uh oh, you already declared i
在你的循环中你没有那个,你只有
loop
{
int i = 5;
}
因此,无需重新声明.
你也可以
int i = 5
{
int i = 6;
std::cout << i;
}
并且没有重新声明错误,因为变量在不同的作用域中,并且您可以在多个作用域中使用相同的变量.我将这种情况6打印出来,因为我是范围内的i.
Do the object get destroyed and recreated at each iteration of the loop?
是.可以将循环视为多次调用的函数.当您输入循环/函数的主体时,在其中声明的变量将被构造1,而当您到达循环/函数的末尾时,变量将被销毁.
1:比那稍微复杂一点,但是我们不需要深入研究这个答案中的所有细节