The auto-ptr tag has no wiki summary.
1
vote
2answers
60 views
Sequencing of the copying when passing by value in C++
In C++, when passing an object by value, are there restrictions on when the copy takes place ?
I have the following code (simplified):
class A;
class Parent
{
public:
void ...
0
votes
0answers
31 views
Template auto-generated code, not a type
I'm attempting to generate a class than can read any type of serialized XSD/XML code. Since I have about 1000 different data defintions, I would love to make the XmlLoader class generic.
However, in ...
1
vote
2answers
51 views
Boost Python callback returning auto_ptr deletes the object
I'm creating bindings for a 3rd party library that takes ownership of objects so I'm trying to use auto_ptr as documented in the FAQ.
Here's an example of two classes I've wrapped:
typedef ...
3
votes
2answers
68 views
Singleton pattern: different behavior of auto_ptr and unique_ptr
While implementing a factory class I encountered a behavior of std::auto_ptr that I am not able to understand. I reduced the problem down to the following small program, so ... let's start.
Consider ...
2
votes
1answer
88 views
smart pointer - what if constructor throws?
I have a class that connects to a USB device in the constructor. If the device isn't present or some other situation fails then the constructor throws an exception and the calling code deals with it.
...
1
vote
4answers
138 views
smart pointer in the std::map
I've defined a class myClass,one of its data members is
std::map<int,data*> dataMap
data is defined as
struct data
{
int d1;
int d2;
std::string d3;
}
Inserting of data to ...
3
votes
3answers
115 views
auto_ptr or shared_ptr
In a C++03 environment, would you use an auto_ptr or a (boost) shared_ptr to return a resource from a function? (Where in C++11 one would naturally use a unique_ptr.)
auto_ptr<T> f() {
...
...
1
vote
1answer
47 views
Relinquish ownership of auto_ptr contained object
I have a class that constructs an auto_ptr<T> and gets the T object data filled by a utility function. However, I want the T object stored by an object manager that will persist the whole life ...
2
votes
2answers
112 views
How to use std::auto_ptr as a parameter of function?
I need to use RAII idiom, am I doing it right ?:
std::auto_ptr<std::vector<string>> MyFunction1()
{
std::auto_ptr<std::vector<string>> arrayOfStrings;
...
1
vote
1answer
94 views
Assigning raw pointers to auto_ptr
I was reading an article about effectively using auto_ptr. In there, the following code was suggested as a correct piece of code:
// Example 10(c): Correct (finally!)
//
auto_ptr<String> f()
{
...
1
vote
1answer
66 views
Debug Assertion Failed When I Delete A SDL_VideoInfo Pointer
I'm making a game in SDL, and I'm using SDL_VideoInfo to get the monitors current resolution.
Example Code: (This may have a few spelling mistakes or wrong names for functions/variable types, i'm ...
2
votes
3answers
186 views
Create a new object from existing pointer C++
I've looked for the answer but still can't figure this out.
Sorry, but my work is too complex to copy here sample code.
I have a function, which gets a pointer as parameter; I use it, but later, I ...
1
vote
1answer
88 views
Is it safe to return vector<auto_ptr<T>>? [duplicate]
Possible Duplicate:
Why is it wrong to use std::auto_ptr<> with standard containers?
I have a function to return some Object in pointer, so I use:
vector <auto_ptr <Object> ...
9
votes
2answers
286 views
Is it true that a unique_ptr declaration, unlike a auto_ptr declaration, is well-defined when its template type is of an incomplete type?
I wrote this article and got some comments on it that confused me.
It basically boils down to my having seen T2 used only as a template parameter and mistakenly jumped to the conclusion that I could ...
2
votes
1answer
80 views
function wont accept iterator to auto_ptr
I wrote some flawed Huff compression code that I was trying to fix. The first thing I did was to switch the pointers to auto_ptr (There are reasons I didn't use another smart pointer). I create a ...
2
votes
2answers
232 views
How to set auto_ptr to NULL
Is there a way to set an auto_ptr to NULL, or the equivalent? For instance, I'm creating a binary tree composed of node objects:
struct Node {
int weight;
char litteral;
...
0
votes
1answer
84 views
Auto_ptr to external C struct
I would like to create an Auto_Ptr to a legacy C struct; I only have header files and static libraries so I cannot modify the source code. I wondered wouldn't the auto_ptr automatically try to call ...
2
votes
1answer
116 views
How do you assign a returned auto_ptr?
I'm trying to learn auto_ptr, so I wrote the code below but it results with
..\src\main.cpp:23: error: no match for 'operator=' in 'p1 = source()()'
What have I done wrong? How do you assign a ...
1
vote
4answers
421 views
C++ auto_ptr in functions (as argument and return value)
I am trying to use the auto_ptr in my code, but apparently something goes wrong.
auto_ptr<ClassType> Class(s.Build(aFilename)); //Instantiation of the Class object
int vM = s.GetM(Class);
int ...
1
vote
1answer
29 views
Change this to use auto_ptr?
I have been reading up on the c++ auto_ptr and unique_ptr and stuff and thought to try and use them in a class I am playing with... but I was having trouble getting it to work...
How would I convert ...
1
vote
4answers
321 views
Performance of auto_ptr vs. shared_ptr
I didn't find information about performance issues with auto_ptr and shared_ptr(I use tr1 implementation). As shared_ptr is more complicated compared to auto_ptr so auto_ptr is faster? So in general ...
0
votes
1answer
205 views
std::auto_ptr vs. std::tr1::shared_ptr [duplicate]
Possible Duplicate:
Which kind of pointer do I use when?
I read that std::auto_ptr is obsolete, so you must use std::tr1::shared_ptr instead. As I read difference is std::tr1::shared_ptr ...
3
votes
1answer
313 views
auto_ptr member initialization in constructor body (not in initializators list)
I'm wondering the right way to initialize an auto_ptr member in the constructor of my class.
My class has 2 (or more) auto_ptr instances of different types. And the initialization of one of them ...
0
votes
2answers
140 views
dynamic memory allocation for auto_ptr
This is a sample code of my program. Here I am dynamically allocating memory using std::auto_ptr and entering values( in function) after that I am again allocation memory for the same variable. So Do ...
0
votes
1answer
24 views
In C++03 auto_ptr why isn't compiler generated copy-ctor called?
I understand how auto_ptr works in C++03. It is based on this trick. The trick uses a user-defined conversion to steal the pointer from one object to another when code such as this auto_int ...
2
votes
2answers
394 views
converting a auto_ptr to a shared_ptr
How can I change an std::auto_ptr to a boost::shared_ptr? Here are my restrictions:
1. I am using an API class, lets call it only_auto that returns these pointers
2. I need to use the call in ...
0
votes
1answer
44 views
how to check auto_ptr is already pointing to an object or not
I currently have an auto_ptr:
auto_ptr<ClassA> classA_;
How can I check whether classA_ points to something or not. If I do:
if (classA_ == NULL)
to check if its pointing to NULL, it ...
1
vote
3answers
239 views
Smart Pointer (auto_ptr) behavior
Not sure if someone has already asked this, but I see a strange behavior here:
I've declared two classes, one base and one derived with just one virtual method display().
class A {
public:
...
1
vote
1answer
100 views
making auto_ptr to a friend class
This is a sample code of my project.
I have to make the std::auto_ptr to a friend class, so that it can access private members.
#include "stdafx.h"
#include <map>
#include ...
0
votes
1answer
269 views
How to use smart pointer (e.g. auto_ptr r shared_ptr) to generate a link list data structure in C++ on Linux?
This is a C++ programming problem.
I need to generate a list and return a pointer so that other functions can use the list. The code works but has memory leak because I use "new" to allocate each ...
2
votes
1answer
151 views
Segmentation fault in auto_ptr.release()
I get a segmentation fault at this point of code when calling auto_ptr release member:
try
{
newMod->init(params);
}
catch (const std::exception& e)
{
#ifndef CONFIG_STATIC
...
4
votes
2answers
165 views
return value optimization vs auto_ptr for large vectors
If I use auto_ptr as a return value of a function that populates large vectors, this makes the function a source function (it will create an internal auto_ptr and pass over ownership when it returns a ...
3
votes
3answers
219 views
auto_ptr to normal pointer conversion
Are we able to convert a std::auto_ptr to a normal pointer??
class Test
{
......
}
Test* function()
{
std::auto_ptr<Test> test(new Test());
return ...
1
vote
2answers
282 views
Convert from auto_ptr to normal pointer
I have some third party libraries that generate and return an auto_ptr. However, I really want to use some STL containers.
So I'm guessing one way would be to convert
auto_ptr <int> ptr = ...
0
votes
2answers
94 views
compile error in template member conversion operator
I'm trying to write a conversion operator function template in a class and running into some compile errors which I don't fully understand.
class ABC { };
class BBC:public ABC { };
template ...
6
votes
1answer
135 views
Why can't I have an auto_ptr in an Exception class
I have a problem with auto_ptr in Exception classes, that I eventually reduced to:
#include <memory>
class MyException
{
std::auto_ptr<int> m_foo2;
};
int main()
{
try
{
...
1
vote
4answers
314 views
Initializing std::auto_ptr: “error: no match for call to ‘(std::auto_ptr<int>) (int*)’”
I'm having trouble using std::auto_ptr. I try to compile the following on Ubuntu 11.10 using GCC 4.6.1, and I get the error message error: no match for call to ‘(std::auto_ptr<int>) (int*)’.
...
1
vote
3answers
1k views
ISO C++ forbids declaration of 'auto_ptr' with no type
I'm trying to write a small application and have come across a compile time error using auto_ptr.
I originally tired creating a smart pointer with class I created but the same error occurs if I try ...
3
votes
1answer
201 views
issues on auto_ptr
suppose that,we have following code
auto_ptr<T> source()
{
return auto_ptr<T>( new T(1) );
}
void sink( auto_ptr<T> pt ) { }
void f()
{
auto_ptr<T> a( source() );
...
1
vote
2answers
927 views
Auto Pointer Issue
I'm new to C++ and a bit confused regarding auto_ptr.
I have a class which inside has a static auto_ptr.
static std::auto_ptr<MyCompany::CConnection> con = ...
2
votes
1answer
229 views
What is the danger of passing an auto_ptr to a function expecting a constant reference to an auto_ptr?
Nicolai Josuttis, in his book "The C++ Standard Library - A Tutorial and Reference", writes, at page 44, the following paragraph :
According to the concept of auto_ptrs, it is possible to transfer ...
8
votes
1answer
93 views
Is there a contradiction between these two sources about the `auto_ptr` template class?
This site states on "Ownership, Sources, and Sinks" :
"When you copy an auto_ptr, you automatically transfer ownership from the source auto_ptr to the target auto_ptr; if the target auto_ptr already ...
-1
votes
2answers
139 views
Return auto_ptr payload by value in C++ from function
Does C++ standard guarantee that here would be no crash when returning auto_ptr's payload by value from the function:
class Foo { ... };
std::auto_ptr<Foo> createFoo() {
return ...
0
votes
5answers
184 views
Semantic meanings of std::auto_ptr and boost::shared_ptr
In our large project we have a lot class with the following typedef's:
class Foo
{
public:
typedef std::auto_ptr<Foo> Ptr;
typedef boost::shared_ptr<Foo> Ref;
...
};
...
...
0
votes
2answers
168 views
storing pointers to auto_ptr in vector
Can one store pointers to auto_ptr(s) in a std::vector? Is it safe?
I enumerate a folder reading in XML files and creating an object for each with auto_ptr. I don't know in advance how many XML ...
2
votes
2answers
103 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 { /* ...
0
votes
1answer
32 views
Why the Shape pointed by pb is destroyed when an exception is thrown in the example below?
This example was taken from Stroustup's book, third edition, Section 14.4.2 :
void f (Point p1, Point p2, auto_ptr<Circle> pc, Shape* pb)
{
auto_ptr<Shape> p (new Rectangle(p1 ,p2));
...
0
votes
4answers
315 views
How to allow non-const copy constructor for temporaries
How do I allow a class with a copy constructor that takes a non-const reference to be copy-constructed from temporaries?
The background is this:
I have a function that should return a list of ...
-2
votes
4answers
837 views
'auto_ptr' and STL containers: writing an example of erroneous usage
This question raised after reading this tutorial:
http://www.cprogramming.com/tutorial/auto_ptr.html
There you can find the following statement: A subtle consequence of this behavior is that auto_ ...
0
votes
2answers
784 views
Cast auto_ptr<Base> to auto_ptr<Derived>
Please help me to understand the following issue.
Look at the code example below:
#include <iostream>
class Shape {
public:
virtual wchar_t *GetName() { return L"Shape"; }
};
class Circle: ...




