Tagged Questions
The auto-ptr tag has no wiki summary.
69
votes
5answers
7k views
Why is it wrong to use std::auto_ptr<> with standard containers?
Why is it wrong to use std::auto_ptr<> with standard containers?
19
votes
3answers
3k views
std::auto_ptr to std::unique_ptr
With the new standard coming (and parts already available in some compilers).
The new type std::unique_ptr is supposed to be a replacement for std::auto_ptr.
Does their usage exactly overlap (so I ...
16
votes
5answers
519 views
Why doesn't auto_ptr<T> have operator!() defined?
The Title pretty much sums up my question. Why can't the following be done to check for a null pointer?
auto_ptr<char> p( some_expression );
// ...
if ( !p ) // error
This must be done ...
16
votes
3answers
3k views
Is auto_ptr deprecated?
Will auto_ptr be deprecated in incoming C++ standard?
Should unique_ptr be used for ownership transfer instead of shared_ptr?
If unique_ptr is not in the standard, then do I need to use shared_ptr ...
11
votes
4answers
443 views
Is there any reason to use auto_ptr?
After reading Jossutis' explanation on auto_ptr from his STL book I've got a strong impression that whatever task I would try to use it in I'd 100% fail becuase of one of many auto_ptr's pitfalls.
My ...
8
votes
2answers
2k views
So can unique_ptr be used safely in stl collections?
I am confused with unique_ptr and rvalue move philosophy.
Let's say we have two collections:
std::vector<std::auto_ptr<int>> autoCollection;
std::vector<std::unique_ptr<int>> ...
7
votes
4answers
313 views
Using auto_ptr<> with array
I'm using auto_ptr<> which uses an array of class pointer type so how do I assign a value to it.
e.g.
auto_ptr<class*> arr[10];
How can I assign a value to the arr array?
7
votes
7answers
2k views
Is it wrong to use auto_ptr with new char[n]
If I declare a temporary auto deleted character buffer using
std::auto_ptr<char> buffer(new char[n]);
then the buffer is automatically deleted when the buffer goes out of scope. I would ...
6
votes
3answers
139 views
Which kind of (auto) pointer to use?
I came accross several questions where answers state that using T* is never the best idea.
While I already make much use of RIIC, there is one particular point in my code, where I use T*. Reading ...
6
votes
2answers
115 views
What's the best way to return something like a collection of `std::auto_ptr`s in C++03?
std::auto_ptr is not allowed to be stored in an STL container, such as std::vector. However, occasionally there are cases where I need to return a collection of polymorphic objects, and therefore I ...
6
votes
3answers
1k views
what is auto_ptr_ref, what it achieves and how it achieves it
auto_ptr_ref documentation here says this
This is an instrumental class to allow certain conversions that allow auto_ptr objects to be passed to and returned from functions.
Can somebody explain ...
5
votes
4answers
364 views
Delete raw pointer argument to boost::bind
Lets say I have heap allocated A*, which I want to pass as argument to boost::bind.
boost::bind is saved for later processing in some STL like container of boost::functions's.
I want to ensure A* ...
5
votes
6answers
425 views
Letting go of auto_ptr
Occasionally, for fleeting moments, I think auto_ptr is cool. But most of the time I recognize that there are much simpler techniques that make it irrelevant. For example, if I want to have an ...
5
votes
5answers
631 views
convert shared_ptr to auto_ptr?
I need to obtain auto_ptr from shared_ptr in my code. I can do reverse operation - convert auto_ptr to shared_ptr as shared_ptr has such constructor:
template<class Y> explicit ...
5
votes
4answers
234 views
Code Review question - should I allow this passing of an auto_ptr as parameter?
Consider the following example code which I have recently seen in our code base:
void ClassA::ExportAnimation(auto_ptr<CAnimation> animation)
{
... does something
}
// calling method:
void ...
5
votes
6answers
897 views
C++: auto_ptr + forward decleration?
I have a class like this:
class Inner;
class Cont
{
public:
Cont();
virtual ~Cont();
private:
Inner* m_inner;
};
in the .cpp, the constructor creates an instance of Inner with new and ...
5
votes
3answers
2k views
When would you use an std::auto_ptr instead of boost::shared_ptr?
We've pretty much moved over to using boost::shared_ptr in all of our code, however we still have some isolated cases where we use std::auto_ptr, including singleton classes:
template < typename ...
5
votes
2answers
731 views
std::auto_ptr, delete[] and leaks
Why this code does not cause memory leaks?
int iterCount = 1000;
int sizeBig = 100000;
for (int i = 0; i < iterCount; i++)
{
std::auto_ptr<char> buffer(new char[sizeBig]);
}
WinXP sp2, ...
5
votes
7answers
669 views
Why does this code only print 42?
Could somebody please explain to me why does this code only print "42" instead of "created\n42"?
#include <iostream>
#include <string>
#include <memory>
using namespace std;
class ...
5
votes
9answers
1k views
How do use a std::auto_ptr in a class you have to copy construct?
I have class foo that contains a std::auto_ptr member that I would like to copy construct but this does not appear to be allowed. There's a similar thing for the assignment. See the following example:
...
5
votes
5answers
198 views
Returning a new object along with another value
I want to return two values, one of which is a new object. I can do this using std::pair:
class A {
//...
};
std::pair<A*, int> getA()
{
A* a = new A;
//...
}
To make the code ...
4
votes
4answers
151 views
Why vector.push_back(auto_ptr) wouldn't compile?
I learned that STL can forbid programmer putting an auto_ptr into a container. For example following code wouldn't compile:
auto_ptr<int> a(new int(10));
vector<auto_ptr<int> ...
4
votes
1answer
247 views
Deletion of pointer to incomplete type and smart pointers
When trying to use a an auto_ptr with a type that was declared with forward-declaration, like this:
class A;
...
std::auto_ptr<A> a;
the destructor of A is not called (apparently, because ...
4
votes
4answers
1k views
smart pointers in container like std::vector?
I am learning about smart pointers (std::auto_ptr) and just read here and here that smart pointers (std::auto_ptr) should not be put in containers (i.e. std::vector) because even most compilers won't ...
4
votes
4answers
430 views
How could one implement std::auto_ptr's copy constructor?
Back on my crazy AutoArray thingy... (quoting important bits from there:
class AutoArray
{
void * buffer;
public:
//Creates a new empty AutoArray
AutoArray();
//std::auto_ptr copy ...
4
votes
4answers
410 views
Is this a fine std::auto_ptr<> use case?
Please suppose I have a function that accepts a pointer as a parameter. This function can throw an exception, as it uses std::vector<>::push_back() to manage the lifecycle of this pointer. If I ...
4
votes
3answers
462 views
Will auto_ptr protect against this?
I am not quite clear if auto_ptr will help me in this case:
class A
{
A(const B& member)
: _member(B)
{};
...
const B& _member;
};
A generateA() {
auto_ptr<B> smart(new ...
3
votes
3answers
149 views
Should I explicitly zero initialize auto_ptr?
Some of my colleagues prefer to explicitly initialize std::auto_ptr to 0 in constructor initialization list, but it will be initialized to 0 in it's constructor without any explicit initialization. So ...
3
votes
5answers
165 views
C++ Is using auto_ptr references as out variables idiomatic?
Suppose I want to write factory method that is supposed to allocate heterogeneous objects on the heap and return them to the caller. I am thinking of designing the API like this:
bool ...
3
votes
1answer
194 views
Passing an auto_ptr as an argument to a constructor
I want to be able to pass an auto_ptr as an argument to a constructor. But if the new object could not be created (probably bcoz of no memory), then I want the original auto_ptr to be able to retain ...
3
votes
3answers
240 views
C++ — Is there an implicit cast here from Fred* to auto_ptr<Fred>?
I saw the following code,
#include <new>
#include <memory>
using namespace std;
class Fred; // Forward declaration
typedef auto_ptr<Fred> FredPtr;
class Fred {
public:
static ...
3
votes
1answer
333 views
auto_ptr Traps and Pitfalls
Besides all the known benefits of using auto_ptrs, what are auto_ptr "worst-practices"?
Creating STL contrainers of auto_ptrs.
auto_ptrs don't fulfill the 'CopyConstructable' requirement. See also ...
3
votes
5answers
326 views
auto_ptr and containers - C++
I'm currently working on a 2D game engine and I've read about auto_ptr's and how you should never put them in standard containers.
My engine has this structure:
StateManager -- has many --> State's.
...
3
votes
5answers
275 views
What is the correct way of using an auto_ptr on dynamically allocated arrays?
If i use auto_ptr to hold a pointer to a dynamically allocated array, when the auto_ptr gets killed it will use a plain delete operation and not delete[] thus not deleting my allocated array.
How can ...
3
votes
1answer
346 views
should std::auto_ptr<>::operator = reset / deallocate its existing pointee?
I read here about std::auto_ptr<>::operator=
Notice however that the left-hand side
object is not automatically
deallocated when it already points to
some object. You can explicitly do
...
3
votes
2answers
159 views
Why does the interface for auto_ptr specify two copy-constructor-like constructors
I was going through the auto_ptr documentation on this link auto_ptr
There is something which i could not fully understand why is it done. In the interface section there are two declarations for its ...
3
votes
6answers
304 views
Ternary operator on auto_ptr content not working
I initialize an auto_ptr to NULL and later in the game I need to know if it has NULL or not to return it or a new copy.
I've tried this
auto_ptr<RequestContext> ret = (mReqContext.get() != 0) ...
3
votes
2answers
415 views
Auto Pointer constructor in VC2008
I have an auto pointer implementation:
template <typename T, bool Arr = false>
class GAutoPtr
{
T *Ptr;
public:
typedef GAutoPtr<T, Arr> &AutoPtrRef;
GAutoPtr(T *ptr = ...
3
votes
2answers
1k views
auto_ptr or shared_ptr equivalent in managed C++/CLI classes
In C++/CLI , you can use native types in a managed class by it is not allowed to hold a member of a native class in a managed class : you need to use pointers in that case.
Here is an example :
...
2
votes
2answers
80 views
I believe there is a typo in Stroustup's book, third edition page 368. Could someone confirm?
I believe there's a typo on this code snippet extracted from Stroustup's book, at its page 368 :
template <class X> class std::auto_ptr
{
template <class Y> struct auto_ptr_ref { /* ...
2
votes
5answers
168 views
std::move vs std::auto_ptr?
What can I do with 'move' (r-value references) in C++11 what I can't with std::auto_ptr? (As I understand they are different implementations of one idea.)
And old question again: is std::auto_ptr so ...
2
votes
2answers
79 views
std::auto_ptr<T> Usage
I've read a reasonable amount in decent textbooks about the auto_ptr class. While I understand what it is, and how it gets you around the problem of getting exceptions in places like constructors, I ...
2
votes
2answers
121 views
Passing an auto_ptr to a function effectively makes it a sink. Why?
I'm reading some notes about shared pointers.
They say the first attempt by STL with the auto_ptr had the following major drawbacks:
They can't be used in STL containers
Copying the auto_ptr ...
2
votes
2answers
93 views
Doing type erasure safely without boost and c++0x
Say i have a templated class
template<class T>
class A;
template<>
class A<int>
{
public:
void print(){ std::cout << "I am an int !" << std::endl; }
};
...
2
votes
6answers
138 views
how this auto_ptr program works and what it does?
I ran this program but I didn't get what this auto_ptr does and on which basics it shows the values?
int main(int argc,char **argv)
{
int *i= new int;
auto_ptr<int> x(i);
...
2
votes
3answers
142 views
Providing a “safe” push() function for use with auto_ptr
I want to declare a "safe" push() function for use with auto_ptr like this:
template<class StackType,typename T>
inline void push( StackType &s, auto_ptr<T> p ) {
s.push( p.get() );
...
2
votes
4answers
233 views
std::auto_ptr error
For the below C++ code, I am getting an compiler error:
class Mkt
{
int k;
public:
Mkt(int n): k(n)
{
throw;
}
~Mkt()
{
cout<<"\n\nINSIDE Mkt DTOR ...
2
votes
4answers
238 views
Why operator [] is not allowed on std::auto_ptr?
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 )
{
...
2
votes
3answers
1k views
Qt and auto_ptr
I just discovered the concept of an auto_ptr and am liking it! As Qt often requires a QList or QVector<(some QObject or QWidget) *>, is there any concrete reason why auto_ptr should be avoided. If ...
2
votes
3answers
174 views
Containers of auto pointers
I know containers of auto pointers should not be used and can cause problems. What is the actual reason for that? Is there any other kind of "smart" pointer which is safe to use in a container?