Tagged Questions
0
votes
2answers
71 views
Implementing std::equal with tr1::shared_ptr types
Could not easily find a solution online...
I have something similar to the following.
class Color {
public:
Color(std::string n) : name(n) {}
typedef std::tr1::shared_ptr<Color> Ptr;
...
0
votes
1answer
953 views
tr1: boost vs vs2010, using shared_ptr without namespace
trying to compile old project that has many uses of shared_ptr with the vs2010.
so, i have precompiled header (stdafx.h) with:
..
using namespace std;
..
#include "boost/shared_ptr"
...
0
votes
3answers
983 views
How is the std::tr1::shared_ptr implemented?
I've been thinking about using shared pointers, and I know how to implement one myself--Don't want to do it, so I'm trying std::tr1::shared_ptr,and I have couple of questions...
How is the reference ...
3
votes
1answer
309 views
using std::tr1:shared_ptr as an internal mechanism for reference counting
Is it safe and correct to use an std::tr1::shared_ptr as in the sample code below, for the purpose of reference counting? (this is just a particular sample, the class can contain anything else (void*) ...
1
vote
5answers
672 views
shared_ptr<void> t(new char[num]) means memory leak?
shared_ptr<void> t(new char[num])
means memory leak?
If so, what is the correct practice in this case.
should I use shared_array<> instead?
I'm editing the bytes pointed by 't' manually ...
0
votes
3answers
335 views
null shared_ptr can access to member functions
I can access member functions of a null shared_ptr object :
#include <memory>
#include <iostream>
class A
{
public:
int getNum() {return 1234;}
};
int main()
{
...
12
votes
1answer
903 views
Differences between tr1::shared_ptr and boost::shared_ptr?
Are there any difference between tr1::shared_ptr and boost::shared_ptr? If so, what?
0
votes
5answers
517 views
Crazy C++ Vector iterator
I declare:
typedef std::tr1::shared_ptr<ClassA> SharedPtr;
And then:
std::vector<SharedPtr> mList;
And:
typedef std::vector<SharedPtr>::iterator ListIterator;
The return of ...
3
votes
2answers
2k views
Portable way to use shared_ptr in GCC
GCC 4.1 uses the <tr1/memory> header and GCC 4.3 uses <memory> header, I need a portable way to use shared_ptr with GCC 4.3.2 and with GCC 4.2.1, is there any way to do that without ...
4
votes
1answer
1k views
Why is std::tr1::shared_ptr<>.reset() so expensive?
Profiling some code that heavily uses shared_ptrs, I discovered that reset() was surprisingly expensive.
For example:
struct Test {
int i;
Test() {
this->i = 0;
}
...
9
votes
1answer
2k views
Differences between different flavours of shared_ptr
Are there any differences between boost::shared_ptr, std::tr1::shared_ptr and the upcoming (in C++0x) std::shared_ptr?
Will porting from one to another have any overhead or are they basically the ...
3
votes
4answers
398 views
construct two shared_ptr objects from the same pointer
I have a problem from "The C++ Standard Library Extensions":
Exercise 6
I said in Section 2.4.2
that you shouldn't construct two
shared_ptr objects from the same
pointer. The danger is ...
8
votes
3answers
7k views
shared_ptr in std::tr1
I am working on a platform with a gcc compiler however boost cannot compile on it.
I am wondering what is the proper way to include the shared_ptr in std:tr1 on gcc? the file i looked in said not to ...
5
votes
7answers
840 views
Are data structures an appropriate place for shared_ptr?
I'm in the process of implementing a binary tree in C++. Traditionally, I'd have a pointer to left and a pointer to right, but manual memory management typically ends in tears. Which leads me to my ...

