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

link|improve this question

79% accept rate
possible duplicate of C++ auto_ptr for arrays – fbrereto Mar 17 '11 at 23:12
The parameter type for capacity should probably be something other than T, by the way. – fbrereto Mar 17 '11 at 23:13
Can you elaborate why std::vector<T> would not meet your needs? – fbrereto Mar 17 '11 at 23:14
@fbrereto - Just learning std::auto_ptr. And got struck and surprised by this error. It's just a learning part. – Mahesh Mar 17 '11 at 23:15
Note that in C++0x, std::unique_ptr (std::auto_ptr's superior replacement), is specialized for array types. – GManNickG Mar 17 '11 at 23:20
show 1 more comment
feedback

4 Answers

up vote 10 down vote accepted

The reason is that auto_ptr will free the content using delete instead of delete[], and so auto_ptr is not suitable for handling heap-allocated arrays (constructed with new[]) and is only suitable for handling single, heap-allocated arrays that were constructed with new.

Supporting operator[] would encourage developers to use it for arrays and would mistakenly give the impression that the type can support arrays when, in fact, it cannot.

If you want a smartpointer-like array class, use boost::scoped_array.

link|improve this answer
@Michael - Other than using boost library, is there any other smart pointer that can do this job, available in standard headers. – Mahesh Mar 17 '11 at 23:18
1  
@Mahesh: yes -- it's called std::vector. Despite the name, it's fundamentally a smart pointer for an array of objects. – Jerry Coffin Mar 17 '11 at 23:23
@Jerry: heh, and unlike any of the other smart pointers it has clone semantics on assignment. Genius! – Steve Jessop Mar 17 '11 at 23:32
@Steve: Isn't it though? – Jerry Coffin Mar 17 '11 at 23:33
@Jerry Coffin - Got you. Thanks. ( This is for your previous comment on std::vector ) – Mahesh Mar 17 '11 at 23:33
show 3 more comments
feedback

Because std::auto_ptr is not intended to be used with arrays.

Besides, In your sample

std::auto_ptr<T> temp = new T(capacity); // T=int, capacity=5

actually allocates a single int and initializes it with capacity. It does not create an array of integers as you seem to have intended.

link|improve this answer
I intended to use []. Thanks for catching it. – Mahesh Mar 17 '11 at 23:19
@Mahesh: Still an error. auto_ptr is not compatible with arrays. Initializing an auto_ptr with new[] causes undefined behavior. – Ben Voigt Mar 17 '11 at 23:29
@Ben Voigt- You should have posted it as an answer instead. Another learnt point for today. Thanks :) – Mahesh Mar 17 '11 at 23:32
feedback

Because auto_ptr is designed to hold a pointer to a single element; it will use delete (specifically not delete[]) on its destruction.

Your example is not doing what (I think) you think it does. Or at least the name capacity is misleading, because you are only allocating a single element (and assigning the value of capacity` to it). Your for loop has no sensible meaning.

link|improve this answer
feedback

auto_ptr and other smart pointers are only intended to store a pointer to a single object. This is because they use delete in the destructor, rather than delete[], which would be needed if it were storing a pointer to an array.

If you need to wrap an array of objects in a smart pointer, the standard library doesn't offer anything to help. However, Boost does offer scoped_array, which behaves similar to std::auto_ptr and is made to hold arrays of objects created by new[].

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.