2009-06-18から1日間の記事一覧

オブジェクトの順序

C++

オレオレクラスのオブジェクトを STL のコンテナに詰めたい。vector になら詰められるけど、set に詰めようと思ったら、オブジェクトの順序を決めないといけない。operator class Foo { ... public: bool operator<(const Foo& rhs) const { return id < rhs…