1
vote
4answers
90 views
shared_ptr vs scoped_ptr
scoped_ptr is not copy able and is being deleted out of the scope. So it is kind of restricted shared_ptr. So seems besides the cases when you really need to restrict the copy oper …
4
votes
10answers
943 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:
…
27
votes
8answers
1k views
What is a smart pointer and when should I use one?
What is a smart pointer and when should I use one?
3
votes
8answers
1k 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?
0
votes
0answers
52 views
Using Smart Pointers with boost intrusive
I am having trouble using smart pointers in boost intrusive containers.
According to the documentation the requirements for using smart pointers with intrusive containers are the …
1
vote
2answers
100 views
Is it possible for slicing to occur with Smart Pointers?
If I understand slicing correctly I don't think this could happen with pointers or smart pointers. For example, if you had:
class A
{
int something;
};
class B : public A
{
int s …
3
votes
3answers
172 views
C++ Initialization list and memory alloc.
Hi,
Is the following valid?
class myClass
{
private:
...
int m_nDataLength;
boost::shared_array<int> m_pData;
...
public:
myClass(): ..., m_n …
1
vote
2answers
242 views
getting a normal ptr from shared_ptr ?
i have something like shared_ptr t(makeSomething(), mem_fun(&Type::deleteMe))
i now need to call C styled func that require a pointer to Type. How do i get it from shared_ptr?
1
vote
1answer
228 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 …
1
vote
3answers
209 views
C++ and Smart Pointers - how would smart pointers help in this situation?
Much to my shame, I haven't had the chance to use smart pointers in actual development (the supervisior deems it too 'complex' and a waste of time). However, I planned to use them …
1
vote
4answers
197 views
shared_ptr and references in C++
References in C++ are a conveneint construct that allow us to simplify the following C code:
f(object *p){
//do something
}
int main(){
object* p = (object*) calloc(sizeof(ob …
2
votes
8answers
282 views
Should boost::ptr_vector be used in place std::vector all of the time?
Just a conceptual question that I've been running into. In my current project it feels like I am over-using the boost smart_ptr and ptr_container libraries. I was creating boost: …
3
votes
4answers
263 views
How should smart pointers get down casted?
Do smart pointers handle down casting, and if not what is a safe way of working around this limitation?
An example of what I'm trying to do is having two STL vectors (for example) …
1
vote
3answers
117 views
Should the “this” pointer and smart pointers be mixed?
How should I avoid using the "this" pointer in conjunction with smart pointers? Are there any design patterns/general suggestions on working around this?
I'm assuming combining t …
1
vote
2answers
160 views
Implementing Smart Pointer - storing template class in vector
I'm having trouble storing instances of my smart pointer into a container. Here is the code for the pointer.
#include "std_lib_facilities.h"
template <class T>
class counte …
