我正在尝试使用逗号分隔 for 循环中的多个初始化,但出现以下错误。

在 for 循环的第一部分使用逗号是否合法?

error: too few template-parameter-lists
error: sEnd was not declared in this scope


#include <iostream>
#include <algorithm>
#include <vector>

int main() {
  using namespace std;
  typedef vector<int> Vc;
  Vc v;
  for(Vc::iterator sIt = v.begin(), Vc::iterator sEnd = v.end();
      sIt != sEnd; ++sIt) {
    // do something
  }
  return 0;
}

最佳答案

应该只是:

                                  /* remove this  */
for(Vc::iterator sIt = v.begin(), /* Vc::iterator */ sEnd = v.end();
    sIt != sEnd; ++sIt) {
  // do something
}

变成:
for(Vc::iterator sIt = v.begin(), sEnd = v.end();
    sIt != sEnd; ++sIt) {
  // do something
}

此外,这不是逗号运算符的用法(逗号运算符只能用于表达式中);这是一个简单的变量声明。

关于c++ - C++ for 循环中的逗号运算符,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21175277/

10-11 16:18