Boost logo

Boost :

Subject: [boost] [functional] [shared_ptr] boost::hash<shared_ptr<T>> Returns Only Two Values
From: Stewart, Robert (Robert.Stewart_at_[hidden])
Date: 2011-02-18 14:40:03


The following is a program that demonstrates that a null shared_ptr<int> produces a hash value of zero and that (ostensibly) all non-null instances produce a hash value of one. I expected that there'd be a shared_ptr specialization of hash_value to make it work right, but I don't find one. Shouldn't there be one?

#include <iostream>
#include <map>
#include <vector>
#include <boost/shared_ptr.hpp>
#include <boost/functional/hash.hpp>

int
main()
{
   typedef boost::shared_ptr<int> ptr_type;
   typedef std::map<std::size_t, int> hashes_type;
   std::vector<ptr_type> v(25);
   hashes_type hashes;
   boost::hash<ptr_type> hasher;
   ptr_type null_ptr;
   ++hashes[hasher(null_ptr)];
   for (int i(0); i < 25; ++i)
   {
      v[i] = ptr_type(new int(i));
      std::size_t const hash(hasher(v[i]));
      ++hashes[hash];
   }
   for (hashes_type::iterator it(hashes.begin()), end(hashes.end());
        it != end; ++it)
   {
      std::cout << it->first << ": " << it->second << '\n';
   }
}

_____
Rob Stewart robert.stewart_at_[hidden]
Software Engineer, Core Software using std::disclaimer;
Susquehanna International Group, LLP http://www.sig.com

IMPORTANT: The information contained in this email and/or its attachments is confidential. If you are not the intended recipient, please notify the sender immediately by reply and immediately delete this message and all its attachments. Any review, use, reproduction, disclosure or dissemination of this message or any attachment by an unintended recipient is strictly prohibited. Neither this message nor any attachment is intended as or should be construed as an offer, solicitation or recommendation to buy or sell any security or other financial instrument. Neither the sender, his or her employer nor any of their respective affiliates makes any warranties as to the completeness or accuracy of any of the information contained herein or that this message or any of its attachments is free of viruses.


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk