Tagged Questions
An abstract data type that simulates a pointer while providing additional features, such as automatic garbage collection or bounds checking
66
votes
9answers
11k views
What is a smart pointer and when should I use one?
What is a smart pointer and when should I use one?
37
votes
5answers
1k views
Which kind of pointer do I use when?
Ok, so the last time I wrote C++ for a living, std::auto_ptr was all the std lib had available, and boost::shared_ptr was all the rage. I never really looked into the other smart pointer types boost ...
37
votes
6answers
7k views
smart pointers (boost) explained
What is the difference between the following set of pointer? When do you use each pointer in a production code, if at all?
Examples would be appreciated!
1.scoped_ptr
2.shared_ptr
3.weak_ptr
...
37
votes
7answers
7k views
RAII and smart pointers in C++
In practice with C++, what is RAII, what are smart pointers, how are these implemented in a program and what are the benefits of using RAII with smart pointers?
29
votes
11answers
4k views
Smart Pointers: Or who owns you baby?
C++ is all about memory ownership
Aka "Ownership Semantics"
It is the responsibility of the owner of a chunk of dynamically allocated memory to release that memory. So the question really becomes who ...
28
votes
2answers
2k views
What C++ Smart Pointer Implementations are available?
Comparisons, Pros, Cons, and When to Use?
This is a spin-off from a garbage collection thread where what I thought was a simple answer generated a lot of comments about some specific smart pointer ...
22
votes
2answers
265 views
Why does unique_ptr have the deleter as a type parameter while shared_ptr doesn't?
The std::unique_ptr template has two parameters: the type of the pointee, and the type of the deleter. This second parameter has a default value, so you usually just write something like ...
21
votes
4answers
387 views
How do smart pointers choose between delete and delete[]?
Consider:
delete new std :: string [2];
delete [] new std :: string;
Everyone knows the first is an error. If the second wasn't an error, we wouldn't need two distinct operators.
Now consider:
...
20
votes
3answers
753 views
shared_ptr magic :)
Mr. Lidström and me had an argument :) Mr. Lidström's claim is that a construct shared_ptr<Base> p(new Derived); doesn't require Base to have a virtual destructor.
@Daniel: Really? Will the ...
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 ...
17
votes
5answers
909 views
What is boost's shared_ptr(shared_ptr<Y> const & r, T * p) used for?
boost::shared_ptr has an unusual constructor
template<class Y> shared_ptr(shared_ptr<Y> const & r, T * p);
and I am a little puzzled as to what this would be useful for. Basically ...
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 ...
16
votes
5answers
3k views
Idiomatic use of std::auto_ptr or only use shared_ptr?
Now that shared_ptr is in tr1, what do you think should happen to the use of std::auto_ptr? They both have different use cases, but all use cases of auto_ptr can be solved with shared_ptr, too. Will ...
15
votes
5answers
3k views
Questions on usages of shared_ptr - C++
I have few questions on the best practices of using shared_ptr.
Question 1
Is copying shared_ptr cheap? Or do I need to pass it as reference to my own helper functions and return as value? Something ...
15
votes
7answers
6k views
C++ using scoped_ptr as a member variable
Just wanted opinions on a design question. If you have a C++ class than owns other objects, would you use smart pointers to achieve this?
class Example {
public:
// ...
private:
...
14
votes
6answers
4k views
C++ Smart Pointer performance
How much do using smart pointers, particularly boost::shared_ptr cost more compared to bare pointers in terms of time and memory? Is using bare pointers better for performance intensive parts of ...
13
votes
5answers
540 views
When should I use C++ pointers over Smart Pointers?
After reading this answer, it looks like it is a best practice to use smart pointers as much as possible, and to reduce the usage of "normal" pointers to minimum.
Is that true?
Please note that I'm ...
13
votes
4answers
278 views
Propagate constness to data pointed by member variables
It is often quite confusing to C++ newcomers that const member functions are allowed to call non-const methods on objects referenced by the class (either by pointer or reference). For example, the ...
12
votes
9answers
778 views
Usage of Smart Pointers as a Programming Standard?
More and more I hear, that I should use smart pointers instead of naked pointers, despite I have effective memory leak system implemented.
What is the correct programming approach on using smart ...
12
votes
5answers
257 views
Why can operator-> be overloaded manually?
Wouldn't it make sense if p->m was just syntactic sugar for (*p).m? Essentially, every operator-> that I have ever written could have been implemented as follows:
Foo::Foo* operator->()
{
...
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 ...
11
votes
11answers
1k views
Once you've adopted boost's smart pointers, is there any case where you use raw pointers?
I'm curious as I begin to adopt more of the boost idioms and what appears to be best practices I wonder at what point does my c++ even remotely look like the c++ of yesteryear, often found in typical ...
10
votes
2answers
151 views
How to remove (non-intrusive) smart pointers from a cache when there are no more references?
Because of my noob reputation, I cannot reply to this Thread, in specific the accepted answer:
I never used boost::intrusive smart pointers, but if you would use shared_ptr smart pointers, you ...
10
votes
1answer
623 views
C++0x Smart Pointer Comparisons: Inconsistent, what's the rationale?
In C++0x (n3126), smart pointers can be compared, both relationally and for equality. However, the way this is done seems inconsistent to me.
For example, shared_ptr defines operator< be ...
10
votes
4answers
4k views
Where is shared_ptr?
I am so frustrated right now after several hours trying to find where shared_ptr is located. None of the examples I see show complete code to include the headers for shared_ptr (and working). Simply ...
10
votes
10answers
1k views
pros and cons of smart pointers
I came to know that smart pointer is used for resource management and supports RAII.
But what are the corner cases in which smart pointer doesn't seem smart and things to be kept in mind while using ...
10
votes
5answers
2k views
How can I use covariant return types with smart pointers?
I have code like this:
class RetInterface {...}
class Ret1: public RetInterface {...}
class AInterface
{
public:
virtual boost::shared_ptr<RetInterface> get_r() const = 0;
...
};
...
10
votes
3answers
2k views
Pointers and containers
We all know that RAW pointers need to be wrapped in some form of smart pointer to get Exception safe memory management. But when it comes to containers of pointers the issue becomes more thorny.
The ...
9
votes
3answers
188 views
smart pointers, typedefs and forward declarations
I love using smart pointers, and have seen a bit of code which makes nice use of typedefs make make them prettier. For example:
struct A {
typedef boost::shared_ptr<A> pointer;
};
allows ...
9
votes
5answers
477 views
How to use C++ Smart Pointers?
I've been using C++ for some time now and I still don't feel very comfortable about using smart pointers and I've only been using them when editing some code that uses them, never in my own code (it ...
9
votes
2answers
378 views
why weak_ptr can break cyclic reference?
I learnt a lot about weak_ptr working with share_ptr to break cyclic reference. How does it work? How to use that? Can any body give me an example? I am totally lost here.
One more question, what's a ...
9
votes
4answers
2k views
Smart pointers/safe memory management for C?
I, and I think many others, have had great success using smart pointers to wrap up unsafe memory operations in C++, using things like RAII, et cetera. However, wrapping memory management is easier to ...
8
votes
5answers
185 views
Can storing unrelated data in the least-significant-bit of a pointer work reliably?
Let me just say up front that what I'm aware that what I'm about to propose is a mortal sin, and that I will probably burn in Programming Hell for even considering it.
That said, I'm still interested ...
8
votes
5answers
303 views
Can I write a C++ functor that accepts both a raw pointer and a smart pointer?
Given the following:
struct Foo
{
int bar() const;
};
struct IsEqual : public std::unary_function<Foo*, bool>
{
int val;
IsEqual(int v) : val(v) {}
bool operator()(const Foo* ...
8
votes
4answers
5k views
Example to use shared_ptr?
Hi I asked a question today about How to insert different types of objects in the same vector array and my code in that question was
gate* G[1000];
G[0] = new ANDgate() ;
G[1] = new ORgate;
//gate ...
8
votes
8answers
1k views
smart pointers + “this” considered harmful?
In a C++ project that uses smart pointers, such as boost::shared_ptr, what is a good design philosophy regarding use of "this"?
Consider that:
It's dangerous to store the raw pointer contained in ...
8
votes
7answers
1k views
Replacing auto_ptr in VC++ 8
std::auto_ptr is broken in VC++ 8 (which is what we use at work). My main gripe with it is that it allows auto_ptr<T> x = new T();, which of course leads to horrible crashes, while being simple ...
7
votes
2answers
206 views
Mixing C++ and Objective-C
I am using C++ as the app backbone and Objective-C for the GUI, that's fine.
But when it comes to mixing those code together in Objective-C++ (.mm file), I have got a few question:
1. Can I mix STL ...
7
votes
2answers
157 views
Smart Pointers and Exception handling
I have looked over the internet and this thread looking for a complete
answer of this situation I am facing. I have read that throwing smart
pointers to objects is not very clever. I just want to ...
7
votes
2answers
192 views
Question about boost::make_shared
In the boost doc of make_shared, it says:
Besides convenience and style, such a function is also exception safe and considerably
faster because it can use a single allocation for both the ...
7
votes
4answers
237 views
How to check memory allocation failures with new operator?
Just recently I switched the language of my project to use C++ from C.
With C, I used malloc and after that I check if malloc was successful but with C++, I use 'new' to allocate memory and I would ...
7
votes
3answers
442 views
Is there a general smart pointer like auto_ptr and shared_ptr that doesn't need C++0x?
I'm wanting a non-reference counted smart pointer that can combine some of the useful aspects of auto_ptr and shared_ptr. I think that C++0x's unique_ptr is ultimately what I'd need, but I need ...
7
votes
4answers
245 views
Should a library use an interface that uses smart pointers?
I'm starting to write a library and considering its interface. Previous libraries I've written all use raw pointers (both internally and in its interface), and now I want to try the smart pointer ...
7
votes
6answers
367 views
How to handle failure to release a resource which is contained in a smart pointer?
How should an error during resource deallocation be handled, when the
object representing the resource is contained in a shared pointer?
EDIT 1:
To put this question in more concrete terms: Many ...
7
votes
1answer
5k views
Smart pointers in Qt
Like it has been written here Qt up to now has 8 specilized smart pointer classes.
It looks like it is all you will ever need.
However, in order to use any of these smart pointers your class must be ...
7
votes
4answers
183 views
Can smart pointers selectively hide or re-direct function calls to the objects they are wrapping?
I'm working on a project where certain objects are referenced counted -- it's a very similar setup to COM. Anyway, our project does have smart pointers that alleviate the need to explicitly call ...
7
votes
7answers
3k views
How does a reference-counting smart pointer's reference counting work?
In other words, how does the implementation keeps track of the count?
Is there a map-like object maintained which is accessible by all the shared_ptr instances whose key is the pointer's address and ...
7
votes
3answers
3k views
STL class for reference-counted pointers?
This should be trivial but I can't seem to find it (unless no such class exists!)
What's the STL class (or set of classes) for smart pointers?
UPDATE
Thanks for the responses,
I must say I'm ...
7
votes
9answers
3k views
What is the best way to implement smart pointers in C++?
I've been evaluating various smart pointer implementations (wow, there are a LOT out there) and it seems to me that most of them can be categorized into two broad classifications:
1) This category ...
7
votes
11answers
2k views
Find memory leaks caused by smart pointers
Does anybody know a "technique" to discover memory leaks caused by smart pointers? I am currently working on a large project written in C++ that heavily uses smart pointers with reference counting. ...