//header scoped_array<HWND> pFeatureButtons; //source u32 count = 3; pFeatureButtons = //how do I allocate an array with 3 elements?
[C++] Boost's scoped_array
Started by Lord Maz, Jun 23 2005 04:59 AM
11 replies to this topic
#1 Banned - Reputation: 110
Posted 23 June 2005 - 04:59 AM
Hey, first of all I must say there's a distinct lack of examples of boost code right now.. been googlin' for a couple of hours and not much luck in helping me with my problem.
Alright; I'm trying to do this:
I'm currently a complete boost noob, so have patience with me ;)
Ad:
#4 Members - Reputation: 892
Posted 23 June 2005 - 05:23 AM
All get() does is to return a pointer to the memory you previously allocated. You can't change the stored pointer with it. When using reset(), you are in fact "allocating it yourself". reset() or the constructor is the only "legal" way to do this.
#5 Anonymous Poster_Anonymous Poster_* Guests - Reputation:
Posted 23 June 2005 - 05:25 AM
prefer std::vector to scoped_array..
#8 Anonymous Poster_Anonymous Poster_* Guests - Reputation:
Posted 23 June 2005 - 09:42 AM
Quote:You are kofused. How is pFeatureButtons.reset( new HWND[count] ); not "dynamically resizing the array"? Why do you feel it should be faster than vec.resize(count); which basically does the same?
Original post by Konfusius
std::vector is slower than boost::scoped_array because it does dynamic resizing of the array.
#9 Members - Reputation: 1135
Posted 23 June 2005 - 09:54 AM
Quote:
Original post by Anonymous Poster
You are kofused. How is pFeatureButtons.reset( new HWND[count] ); not "dynamically resizing the array"? Why do you feel it should be faster than vec.resize(count); which basically does the same?
scoped_array does not resize the array, ever. It can't, because it doesn't know how big the array is in the first place. It is just a wrapper over a pointer that ensures things get deleted properly. It serves an entirely different job than vector.
CM
#10 Members - Reputation: 1554
Posted 23 June 2005 - 10:17 AM
Quote:
Original post by Conner McCloud Quote:
Original post by Anonymous Poster
You are kofused. How is pFeatureButtons.reset( new HWND[count] ); not "dynamically resizing the array"? Why do you feel it should be faster than vec.resize(count); which basically does the same?
scoped_array does not resize the array, ever. It can't, because it doesn't know how big the array is in the first place. It is just a wrapper over a pointer that ensures things get deleted properly. It serves an entirely different job than vector.
CM
There is no std::auto_array because it was felt that std::vector allready filled that role. They're going to preform nearly identically:
std::vector< int > pie_v ( 31415 );
boost::scoped_array< int > pie_sa ( new int [31415] );
Advantages of the former include:
1) much better preformance during a resize (which for a scoped array would involve allways reallocating)
2) as std::vector tracks how much it allocates, there's the potential for a more optimized deallocation of the associated data on destruction.
In instances where you're not using a custom allocator and will never resize your array, I'm guessing that boost::scoped_array and std::vector are going to behave nearly the same, in which case I'd arge it boils down to intent. std::vector hints that you may be reallocating, boost::scoped_array hints that you probably are not.
What's the best way to find out? You guessed it... profile!!!
#11 Members - Reputation: 1135
Posted 23 June 2005 - 10:50 AM
Quote:
Original post by MaulingMonkey
std::vector hints that you may be reallocating, boost::scoped_array hints that you probably are not.
This is the big thing I was trying to get at. scoped_array is a static array, while vector is a dynamic one. In terms of performance, I don't see there being a difference. *edit: Except in the realm of custom allocators, which I know nothing about.
CM
#12 Anonymous Poster_Anonymous Poster_* Guests - Reputation:
Posted 23 June 2005 - 07:47 PM
Quote:What I meant was this:
Original post by Conner McCloud
scoped_array does not resize the array, ever.
scoped_array pFeatureButtons; //"array size=0" (points to 0)
pFeatureButtons.reset( new HWND[count] ); //array size=count
std::vector would do basically the same allocations here, but the new call is just hidden inside the resize call.
Quote:It seemed that in this case pFeatureButtons was simply mimicing a dynamic array. The question now was only if std::vector was supposed to have this performance penalty over scoped_array or not.
It serves an entirely different job than vector.






