As the title says it's all - "Why operator [] is not allowed on std::auto_ptr ?"
#include <iostream>
using namespace std ;
template <typename T>
void foo( T capacity )
{
auto_ptr<T> temp = new T[capacity];
for( size_t i=0; i<capacity; ++i )
temp[i] = i; // Error
}
int main()
{
foo<int>(5);
return 0;
}
Compiled on Microsoft Visual C++ 2010.
Error: error C2676: binary '[' : 'std::auto_ptr<_Ty>' does not define this operator or a conversion to a type acceptable to the predefined operator
capacityshould probably be something other thanT, by the way. – fbrereto Mar 17 '11 at 23:13std::vector<T>would not meet your needs? – fbrereto Mar 17 '11 at 23:14std::auto_ptr. And got struck and surprised by this error. It's just a learning part. – Mahesh Mar 17 '11 at 23:15std::unique_ptr(std::auto_ptr's superior replacement), is specialized for array types. – GManNickG Mar 17 '11 at 23:20