Tagged Questions
The unique-ptr tag has no wiki summary.
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
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 ...
15
votes
3answers
672 views
make_unique and perfect forwarding
Why is there no std::make_unique function template in the standard C++11 library? I find
std::unique_ptr<SomeUserDefinedType> p = new SomeUserDefinedType(1, 2, 3);
a bit verbose. Wouldn't the ...
13
votes
3answers
1k views
pimpl: shared_ptr or unique_ptr
I've been making some objects using the pimpl idiom, but I'm not sure whether to used shared_ptr or unique_ptr.
I understand unique_ptr is more efficient, but this isn't so much of an issue for me, ...
12
votes
3answers
896 views
Returning unique_ptr from functions
unique_ptr<T> does not allow copy construction, instead it supports move semantics. Yet, I can return a unique_ptr<T> from a function and assign the returned value to a variable.
#include ...
10
votes
4answers
3k views
unique_ptr boost equivalent?
Is there some equivalent class for C++1x's std::unique_ptr in the boost libraries? The behavior I'm looking for is being able to have an exception-safe factory function, like so...
...
9
votes
1answer
165 views
Should `unique_ptr< T const [] >` accept a `T*` constructor argument?
Code:
#include <memory>
using namespace std;
struct T {};
T* foo() { return new T; }
T const* bar() { return foo(); }
int main()
{
unique_ptr< T const > p1( bar() ); ...
9
votes
4answers
374 views
How do I pass a unique_ptr argument to a constructor or a function?
I'm new to move semantics in C++11 and I don't know very well how to handle unique_ptr parameters in constructors or functions. Consider this class referencing itself:
#include <memory>
...
9
votes
4answers
583 views
Does std::unique_ptr<T> requires to know the full T definition?
I have some code in a header that looks like this:
#include <memory>
class Thing;
class MyClass
{
std::unique_ptr< Thing > my_thing;
};
If I include this header in a cpp that ...
8
votes
3answers
161 views
std::unique_ptr twice as big as underlying object
I'm having an issue with (specifically the MSFT VS 10.0 implementation of) std::unique_ptrs. When I create a std::list of them, I use twice as much memory as when I create a std::list of just the ...
8
votes
3answers
2k views
C++ unique_ptr and map
I'm trying to use the C++0x unique_ptr class inside a map like so:
// compile with `g++ main.cpp -std=gnu++0x`
#include <string.h>
#include <map>
#include <memory>
using ...
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
456 views
Well, how does the custom deleter of std::unique_ptr work?
According to N3290 std::unique_ptr accepts a deleter argument in its constructor.
However, I can't get that to work with Visual C++ 10.0 or MinGW g++ 4.4.1 in Windows, nor with g++ 4.6.1 in Ubuntu.
...
7
votes
3answers
1k views
C++0x performance improvements
One of the C++0x improvements that will allow to write more efficient C++ code is the unique_ptr smart pointer (too bad, that it will not allow moving through memmove() like operations: the proposal ...
6
votes
1answer
1k views
How can I get this code involving unique_ptr to compile?
#include <vector>
#include <memory>
using namespace std;
class A {
public:
A(): i(new int) {}
A(A const& a) = delete;
A(A &&a): i(move(a.i)) {}
...
4
votes
2answers
92 views
What should the behavior of unique_ptr be in this situation?
Say I have the following:
std::unique_ptr<A> pA;
pA(new A);
In this convoluted example, what should the behavior of pA(new A); be?
As far as I can tell, in MSVC2010, void operator()(T*) ...
4
votes
1answer
137 views
The move function in unique_ptr C++03 emulation
I'm trying to understand how C++03 emulation of unique_ptr is implemented. unique_ptr is quite like std::auto_ptr but safer. It spits out compiler errors in cases where auto_ptr would have transferred ...
4
votes
3answers
210 views
What is the scope of a unique_ptr returned from a function?
Would this work properly? (see example)
unique_ptr<A> source()
{
return unique_ptr<A>(new A);
}
void doSomething(A &a)
{
// ...
}
void test()
{
...
4
votes
2answers
637 views
std::list< std::unique_ptr<T> >: passing it around
Say I have a std::list of class T's:
std::list<T> l;
When passing it into functions, I would use a reference:
someFunction( std::list<T> &l )
What is the best way to pass around ...
3
votes
3answers
132 views
Bad practice to return unique_ptr for raw pointer like ownership semantics?
I've written a static factory method that returns a new Foobar object populated from another data object. I've recently been obsessed with ownership semantics and am wondering if I'm conveying the ...
3
votes
1answer
161 views
c++ Can I use std::unique_ptr with dependency injection?
I had been doing dependency injection using raw pointers and I decided to convert my code to use shared_ptr. This works but I'm wondering if I could use unique_ptr instead? In my example below, ...
3
votes
2answers
556 views
Does Hinnant's unique_ptr implementation incorrectly fail to convert derived-to-base in this case?
I'm currently trying to use Howard Hinnant's unique_ptr implementation, and am running into a compile error. Here is some sample code:
struct Base {};
struct Derived : public Base {};
void ...
3
votes
2answers
804 views
Can't create map of MoveConstructibles
I have a class containing a std::unique_ptr<> and I want to put instances of this class inside of an std::map<>. I thought one of the things that motivated the introduction of move ...
2
votes
1answer
60 views
How do I use unique_ptr for pimpl?
Here is a simplification of what I'm seeing when I try to use unique_ptr for pimpl. I chose unique_ptr because I really want the class to own the pointer - I want the lifetimes of the pimpl pointer ...
2
votes
3answers
149 views
When does it make sense to use unique_ptr with STL containers? (C++11)
A container of unique_ptr seems to make little sense: you cannot use it with initializer lists and I failed to iterate through the container (workarounds below). Am I misunderstanding something? Or ...
2
votes
3answers
100 views
What is the right way to pass an array of unique_ptrs?
Is this the right way to pass an array of unique_ptrs if I want no copies?
In other words, I want everything that happens to x to impact arr in the caller.
void doWork( unique_ptr<Foo> x[] )
{
...
2
votes
4answers
274 views
How to remove unique_ptr by pointer from a container?
Creating an object and giving ownership to a container using a unique_ptr is no problem. How would one remove an element by raw pointer?
std::set<std::unique_ptr<MyClass>> mySet;
MyClass ...
2
votes
3answers
142 views
function that modifies object pointed to by std::unique_ptr<T>
Somewhere in my code I have a local std::unique_ptr<T>. I need to do stuff with the object pointed at, and I use a function for that:
std::unique_ptr<T> some_function( ...
2
votes
1answer
416 views
Socket pointer transfer of ownership with tcp::acceptor::async_accept
I've recently started using Boost.Asio in a project and would like to know whether anyone knows a clean solution to transfer ownership of a newly created socket to tcp::acceptor::async_accept, which ...
1
vote
2answers
127 views
How to capture a unique_ptr into a lambda expression?
I have tried the following:
std::function<void ()> getAction(std::unique_ptr<MyClass> &&psomething){
//The caller given ownership of psomething
return [psomething](){
...
1
vote
2answers
127 views
Difference between boost::scoped_ptr<T> and std::unique_ptr<T>
Is the sole difference between boost::scoped_ptr<T> and std::unique_ptr<T> the fact that std::unique_ptr<T> has move semantics whereas boost::scoped_ptr<T> is just a get/reset ...
1
vote
3answers
95 views
C++11 Pointer Uniquify Helper Function
In C++11, I'm missing a syntatic sugar for uniquifying a pointer into std::unique_ptr. I therefore wrote the following litte helper function std::uniquify_ptr typically used to easy (non-constructor) ...
1
vote
2answers
121 views
C++ how to sort dynamically using lambda functions for a vector of unique_ptrs?
So I have a std::vector<std::unique_ptr<Base>> vec and I'm trying to sort it dynamically, given that there are logical comparisons between Derived1 to Derivedn (Derivedn always > ...
1
vote
3answers
373 views
C++0x unique_ptr misunderstanding?
In N2812 is an example in the Introduction where a unique_ptr is given as a value parameter
void push_back2(
std::list<std::unique_ptr<int>>& l, std::unique_ptr<int> a)
{
...
1
vote
2answers
130 views
STL rotating const_iterators of unique_ptrs
I have problems using std::rotate on a const_iterator over a unique_ptr middle.
I have tried:
std::vector<std::unique_ptr<Object> >::const_iterator middle;
// middle is pointing at ...
1
vote
2answers
441 views
C++0x unique_ptr custom storage type example?
Howard Hinnant explained that unique_ptr can also use a custom storage type. He mentions as an example "shared memory".
He only gives the rough idea (which is fine for a quick intro). But can anyone ...
1
vote
1answer
318 views
Moving unique_ptrs from one vector to another
I'd like to move the unique_ptr's stored in an unsorted vector of them to another vector, that will contain the sorted vector of pointers.
Surely moving a unique_ptr will not automatically erase the ...
1
vote
4answers
646 views
Returning a unique_ptr from a class method C++0x
If my class SomeType has a method that returns a element from the map (using the key) say
std::unique_ptr<OtherType> get_othertype(std::string name)
{
return otMap.find(name);
}
that would ...
1
vote
1answer
312 views
Does Visual C++ 2010 Beta 1 have unique_ptr, and if not, where can I get a C++0x reference implementation?
I do know:
It wasn't in the CTP
It's slated to be in the final release
I can't find it in Beta 1
I want to play with it
0
votes
3answers
51 views
How to declare a vector of unique_ptr's as class data member?
I'd like to have a vector of unique_ptr's as a member of a class I'm making.
class Foo {
[...]
private:
vector<unique_ptr<Bar>> barList;
}
But then I start getting cryptic ...
0
votes
4answers
203 views
Handling smart pointers in stl container
I've a class Foo<T> which has a vector of smart pointers to Shape derived classes.
I'm trying to implement an at(index) member function. Here's what I would to do intuitively:
...
0
votes
1answer
106 views
C++ passing vector of unique_ptrs as parameters to corresponding element of another equal-length vector (especially parallelly)
I have:
vector of unique_ptrs of ObjectA
vector of newly default constructed vector of ObjectB, and
a function in Object B that has signature void f(unique_ptr<ObjectA> o).
(word Object ...
0
votes
1answer
60 views
Iterating over a container of unique_ptr's
How does one access unique_ptr elements of a container (via an iterator) without taking ownership away from the container? When one gets an iterator to an element in the container is the element ...
0
votes
3answers
305 views
Passing a std::unique_ptr as a parameter to a function
I got a structure and a function like the following:
struct MYOVERLAPPED : public OVERLAPPED
{
//...
};
void func1(std::unique_ptr<MYOVERLAPPED> pBuf)
{
//...
};
I am obtaining a ...
0
votes
1answer
95 views
Closure deleter in initializer list (C++0x) and compiler warning
I get a warning C4355: 'this' : used in base member initializer list from Visual C++ 2010:
I have a class holding a handle, and I want to automatically close the handle even if the ctor for the class ...
0
votes
2answers
280 views
return NULL value
Snippets of framebufferd3d11.h
namespace dx11 {
...
class FramebufferManager : public FramebufferManagerBase
{
public:
...
private:
...
static struct Efb
{
...
...
0
votes
3answers
1k views
std::unique_ptr usage
std::unique_ptr<int> p1(new int);
std::unique_ptr<int> p2(new int);
p2=p1;
It seems here that p1 is no longer "unique" since p2 refer to it also
It is legal c++ ?
Does unique_ptr have ...
0
votes
2answers
340 views
pimpl: Avoiding pointer to pointer with pimpl
In this question I asked "pimpl: shared_ptr or unique_ptr" I've been convinced that the proper usage of the pimpl idiom is to use a unique_ptr, not a shared_ptr. It should act to the user as if there ...
0
votes
4answers
285 views
Implementing Containers using Smart Pointers
Ok, so everyone knows that raw pointers should be avoided like the plague and to prefer smart pointers, but does this advice apply when implementing a container? This is what I am trying to ...
0
votes
1answer
856 views
Custom Unique_ptr deleter, controlled deleting
I have a for loop that iterates through an XML document and finds a specified attribute, the pointer that points to the current node sits inside a boost::interprocess::unique_ptr and has a custom ...