I can't understand why the following code is not working, any idea ?
template <class T>
class Matrice
{
public:
...
typedef typename std::vector<T>::const_iterator const_iterator;
const_iterator& cend ( )
{
return valeurs.cend ( );
}
...
private:
...
}
here's the complilator's complaint :
/Users/Aleks/Documents/DS OO/DS OO/Matrice.h:70:16: Non-const lvalue reference to type 'const_iterator' (aka '__wrap_iter') cannot bind to a temporary of type 'const_iterator' (aka '__wrap_iter')
const_iterator: not a reference. – hmjd Jan 29 at 20:26valuers.cend()is a temporary object, and it will go out of scope when returning from yourcend()function. Thus, you would be returning a reference to an object that has gone out of scope. Deferencing it would be Undefined Behavior. – Andy Prowl Jan 29 at 20:31