私はこれに困惑しています...コンパイラの出力:
d:\data\personal\projects\test\test.cpp(42): エラー C2105: '--' には左辺値が必要です
#include <iostream>
#include <algorithm>
#include <iterator>
class FOO
{
public:
typedef int* iterator;
typedef const int* const_iterator;
class explicit_iterator : public std::iterator< std::bidirectional_iterator_tag, int >
{
public:
explicit_iterator(int* ptr = nullptr) : m_ptr(ptr) {}
bool operator ==(const explicit_iterator& rhs) const { return m_ptr == rhs.m_ptr; }
bool operator !=(const explicit_iterator& rhs) const { return m_ptr != rhs.m_ptr; }
reference operator *() const { return *m_ptr; }
explicit_iterator& operator ++() { ++m_ptr; return *this; }
explicit_iterator& operator --() { --m_ptr; return *this; }
private:
int* m_ptr;
};
FOO(int val = 0) { std::fill( begin(), end(), val ); }
iterator begin() { return m_data; }
iterator end() { return m_data + 10; }
explicit_iterator begin2() { return explicit_iterator( begin() ); }
explicit_iterator end2() { return explicit_iterator( end() ); }
private:
int m_data[10];
};
int main (int, char *[])
{
FOO foo;
// This is the line that fails! (Not this one, the one right below!!!)
std::copy( foo.begin(), --foo.end(), std::ostream_iterator<int>( std::cout, "\n" ) ); // C2105
// All these variants are good
std::copy( foo.begin2(), --foo.end2(), std::ostream_iterator<int>( std::cout, "\n" ) ); // good
std::copy( foo.begin(), foo.end() - 1, std::ostream_iterator<int>( std::cout, "\n" ) ); // good
int* end = foo.end();
std::copy( foo.begin(), --end, std::ostream_iterator<int>( std::cout, "\n" ) ); // good
return 0;
}