473,508 Members | 2,365 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

auto_ptr vs shared_ptr

The main difference between std::auto_ptr and boost::shared_ptr is that
auto_ptr has the transfer-of-ownership semantic. That makes it impossible
to store auto_ptrs in STL containers because the containers use the copy
constructor when you store or get an element.

So, is it recommended to use shared_ptr instead? Are there any
disadvantages of shared_ptr? Is shared_ptr slower maybe?

It seems for shared_ptr you only need the boost headers, not the libraries.
Is that true?

Thanks!
Jul 23 '05 #1
3 7627
Markus Dehmann wrote:

So, is it recommended to use shared_ptr instead? Are there any
disadvantages of shared_ptr? Is shared_ptr slower maybe?

shared_ptr allocates a control block from the heap.
It seems for shared_ptr you only need the boost headers, not the libraries.
Is that true?


Ask on the boost reflector.

--

Pete Becker
Dinkumware, Ltd. (http://www.dinkumware.com)
Jul 23 '05 #2
Markus Dehmann wrote:
So, is it recommended to use shared_ptr instead? Are there any
disadvantages of shared_ptr? Is shared_ptr slower maybe?


Better don't waste your precious time and join the International Smart
Pointer Haters Club, an ever growing conglomerate of people who think
that smart pointers are not at all a smart idea. See e.g.
http://groups-beta.google.com/group/...6742e2b0036832

Jul 23 '05 #3


Markus Dehmann schreef:
The main difference between std::auto_ptr and boost::shared_ptr is that
auto_ptr has the transfer-of-ownership semantic. That makes it impossible
to store auto_ptrs in STL containers because the containers use the copy
constructor when you store or get an element.

So, is it recommended to use shared_ptr instead? Are there any
disadvantages of shared_ptr? Is shared_ptr slower maybe?
Disadvantages? Sure, the share count had to be stored somewhere.
sizeof(auto_ptr<T>)==sizeof(T*) on many systems. Furthermore, this
may decrease the cache efficiency.

Furthermore, if the semantics you need /are/ transfer of ownership
(source/sink functions) then std::auto_ptr makes it clear what happens.

It seems for shared_ptr you only need the boost headers, not the libraries.
Is that true?


AFAIK, yes, but that's technically off-topic (and it could change).

Regards,
Michiel Salters

Jul 23 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
17117
by: SerGioGio | last post by:
Hello ! When a ref. counted smart pointer (template) class is available (like boost::shared_ptr), is there any (semantic) reason to still use std::auto_ptr rather than this smart pointer ? Or...
5
2894
by: ctick | last post by:
Are there any advantages of using boost::shared_ptr other than auto_ptr from standard library?
2
2333
by: stephen henry | last post by:
Hi all, I'm trying to create a vector of pointers to a class: For example: class CMb ... std::vector< CMb* > myvect(100);
9
2238
by: BekTek | last post by:
How do you think? and why?
3
3484
by: Evgeny | last post by:
Hi, all! I didn't find yet solution for this problem! Somebody knows where is a catch? Looks like "operator =" or copy constructor not implemented in one of internal templates.... Thanks in...
10
4463
by: red floyd | last post by:
It seems that the use of auto_ptr<> is discouraged in many places in favor of boost::shared_ptr<> (or tr1::shared_ptr<>). But consider a PIMPL idiom, where there is a strict 1-1 relationship...
4
1281
by: Doug Haber | last post by:
Hi All, Everyone tells me that auto_ptr is a good idea, but auto_ptr and COM don't play nice. Can someone please explain why auto_ptr and COM don't like each other and what a reasonable/typical...
18
2823
by: Dilip | last post by:
I can't believe I am unable to get this simple thing right. I have an auto_ptr class to a structure type. I have it as a member variable in my class. struct Y { SomeType& m_st; Y(SomeType&...
39
864
by: Andre Siqueira | last post by:
Hello all, I have a member function like thist: Query(const std::string & id, std::auto_ptr<Modifiermodif = std::auto_ptr<Modifier>()) when a try to instantiate a Query like ...
0
7115
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
1
7036
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7489
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5624
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5047
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4705
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3191
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3179
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
762
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.