C++ 11

使用基于范围的for循环,在属于类成员的std::vector上迭代的代码是什么?我已经尝试了以下几种版本:

struct Thingy {
  typedef std::vector<int> V;

  V::iterator begin() {
      return ids.begin();
  }

  V::iterator end() {
      return ids.end();
  }

  private:
      V ids;
};

// This give error in VS2013
auto t = new Thingy; // std::make_unique()
for (auto& i: t) {
    // ...
}

// ERROR: error C3312: no callable 'begin' function found for type 'Thingy *'
// ERROR: error C3312: no callable 'end' function found for type 'Thingy *'

最佳答案

tThingy *。您没有为Thingy *定义任何函数,而是为Thingy定义了函数。

所以你必须写:

for (auto &i : *t)

09-30 20:24