Tagged Questions

2
votes
4answers
130 views

Is this a fine std::auto_ptr<> use case?

Hello all, 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 …
0
votes
5answers
144 views

Making a non-object resource RAII-compliant

Hello, in my code I use HANDLEs from windows.h. They are used like HANDLE h; if (!openHandleToSomething(arg1, arg2, &h)) { throw std::exception("openHandleToSomething err …
1
vote
6answers
134 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 = (mReq …
1
vote
4answers
200 views

How to effectively delete C++ objects stored in multiple containers? auto_ptr?

I have an application which creates objects of a certain kind (let's say, of "Foo" class) during execution, to track some statistics, and insert them into one or both of two STL ma …
0
votes
2answers
75 views

how can I use auto_ptr as member variable that handles another member variable

I have a class like this: class A { private: B* ptr; } But B ptr is shared among different A objects. How can I use auto_ptr so that when A gets destructed B stays on so t …
6
votes
7answers
502 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 n …
2
votes
5answers
406 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: temp …
4
votes
9answers
274 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 th …
3
votes
2answers
212 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[sizeBi …
2
votes
2answers
87 views

Returning multiple auto_ptrs from a function

Hello, I have a function that allocates two variables on the heap and returns them to the caller. Something like this: void Create1(Obj** obj1, Obj** obj2) { *obj1 = new Obj; …
5
votes
5answers
133 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 ma …
22
votes
4answers
2k views

Why is it wrong to use std::auto_ptr<> with STL containers?

Why is it wrong to use std::auto_ptr<> with STL containers?
1
vote
2answers
207 views

References and auto_ptr

If I have a auto_ptr I can pass it for a reference?Like: auto_ptr<MyClass>Class(new MyClass); void SetOponent(MyClass& oponent); //So I pass SetOponent(Class) And what …
0
votes
2answers
267 views

[C++] Problems with boost::ptr_vector and boost::any

Hey all, ok, so I got a doubt, I want to know if this is possible: I'm using a database, with generic data (strings, ints, bools, etc...). Whenever an object is constructed or a …
3
votes
2answers
193 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; …

1 2 next
15 30 50 per page