What is std::pair for, why would I use it, and what benefits does boost::compressed_pair bring?
|
|
While you're learning Also, checkout Chapter 1, "Tuples," of the book The C++ Standard Library Extensions: A Tutorial and Reference by Pete Becker, ISBN-13: 9780321412997, for a thorough explanation.
|
|||
|
|
|
|
It can sound strange to hear that compressed_pair cares about a couple of bytes. But it can actually be important when one considers where compressed_pair can be used. For example let's consider this code:
It can suddenly have a big impact to use compressed_pair in cases like above. What could happen if boost::bind stores the function pointer and the place-holder
Now, a reasonable (yet, maybe still quite small) limit for such a small buffer would be 8 bytes. That is, our quite simple bind object would not fit into the small buffer, and would require operator new to be stored. If the bind object above would use a So, what may look like just wasting a lot of thought for just only a few bytes actually can have a significant impact on performance. |
|||
|
|
|
|
compressed_pair uses some template trickier to save space. In C++, an object (small o) can not have the same address as a different object. So even if you have
A's size will not be 0, because then:
would hold, which is not allowed. But many compilers will do what is called the "empty base class optimization":
Here, it is fine for B and C to have the same size, even if sizeof(A) can't be zero. So boost::compressed_pair takes advantage of this optimization and will, where possible, inherit from one or the other of the types in the pair if it is empty. So a std::pair might look like (I've elided a good deal, ctors etc.):
That means if either But if you use compressed_pair, its generated code will look akin to:
And |
||||||||||
|
|
|
It's nothing but a structure with two variables under the hood. I actually dislike using std::pair for function returns. The reader of the code would have to know what .first is and what .second is. The compromise I use sometimes is to immediately create constant references to .first and .second, while naming the references clearly. |
|||
|
|
|
Additional info: boost::compressed_pair is useful when one of the pair's types is an empty struct. This is often used in template metaprogramming when the pair's types are programmatically inferred from other types. At then end, you usually have some form of "empty struct". I would prefer std::pair for any "normal" use, unless you are into heavy template metaprogramming. |
||
|
|
|
|
I'm a CS Senior and we covered C++/STL heavily in sophomore year, and I wasn't aware of std:pair either. After having programming in Python--in which tuples and lists are first-class objects--for the last year or so (and loving it!) and being required to use C++ this year for many classes, thanks for bringing it to my attention! |
||
|
|
|
|
Sometimes there are two pieces of information that you just always pass around together, whether as a parameter, or a return value, or whatever. Sure, you could write your own object, but if it's just two small primitives or similar, sometimes a pair seems just fine. |
||
|
|
|
|
It's standard class for storing a pair of values. It's returned/used by some standard functions, like
|
|||
|
|
|
|
std::pair comes in handy for a couple of the other container classes in the STL. For example:
Both store std::pairs of keys and values. When using the map and multimap, you often access the elements using a pointer to a pair. |
|||
|
|
|
|
You sometimes need to return 2 values from a function, and it's often overkill to go and create a class just for that. std:pair comes in handy in those cases. I think boost:compressed_pair is able to optimize away the members of size 0. Which is mostly useful for heavy template machinery in libraries. If you do control the types directly, it's irrelevant. |
||
|

