跳到主要内容

C++ 使用范围 for 处理多维数组

for (auto &row: ia) {  
for (auto &col: row) {
col = 0;
}
}

注意,这里即使不选用引用,也需要加引用,这是为了避免自动转为指针。