我知道我可以使用下面的基於第二::對成員上:如何創建一組具有的std ::對多數民衆贊成在排序利用綁定
template <typename Pair>
struct ComparePairThroughSecond : public std::unary_function<Pair, bool>
{
bool operator()(const Pair& p1, const Pair& p2) const
{
return p1.second < p2.second;
}
};
std::set<std::pair<int, long>, ComparePairThroughSecond> somevar;
,但不知道是否可以用升壓完成:: bind
什麼問題,你想通過使用boost ::綁定了的std ::設置< >的做法是不合適某種程度上解決解決? – andand 2010-06-02 14:29:09