0
class A
{
private:
    int a;
public:
    A( int set )
    {
        a = set;
    };
    ~A();
    bool operator <(const A& ref )
    {
        return this->a < ref.a;
    };
    bool operator ==(const A& ref )
    {
        return this->a == ref.a;
    };
};

int _tmain(int argc, _TCHAR* argv[])
{

    map<A,int>m;
    A a( 1 );
    m.insert( make_pair( a, 2 ) );
    for( map<A,int>::iterator it = m.begin(); it != m.end(); ++it )
    {

    }
    return 0;
}

C2678を生成します:http://msdn.microsoft.com/en-us/library/ys0bw32s(v = vs.80).aspx

オペレーターの場合<

を使用m.findすると、演算子も生成されます==これを回避するにはどうすればよいですか?

具体的には、エラーは次の原因になります。

template<class _Ty>
    struct less
        : public binary_function<_Ty, _Ty, bool>
    {   // functor for operator<
    bool operator()(const _Ty& _Left, const _Ty& _Right) const
        {   // apply operator< to operands
        return (_Left < _Right);
        }
    };

機能について

最終的なケース:

struct MASTERPLAYER
{
    int a;
    bool operator==( const MASTERPLAYER& ref ) const 
    {
        return a == ref.a;
    }
};

int _tmain(int argc, _TCHAR* argv[])
{

    MASTERPLAYER m;
    vector<MASTERPLAYER>v;
    v.push_back( m );
    std::find( v.begin(), v.end(), 2 );

}

4

1 に答える 1

3

関数をとしてマークしてconst、呼び出されたオブジェクトを変更しないことを示します。

bool operator <(const A& ref ) const
{
    return a < ref.a;
};
bool operator ==(const A& ref ) const
{
    return a == ref.a;
};
于 2012-11-17T06:12:29.877 に答える