注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
Container Wrappers - Life like a clown で STL のコンテナを継承しよう(と見せかけよう)と,最後ら... Container Wrappers - Life like a clown で STL のコンテナを継承しよう(と見せかけよう)と,最後らへんは迷走か?と言うレベルで頑張っていましたが,以下にもう少し単純な方法が紹介されていました. 2.STLのvectorをprotected継承してカスタマイズする 例えばこんな感じ。 #include <vector> template <class T, int N, class Allocator = std::allocator<T> > class Vector : protected std::vector<T, Allocator> { public: using std::vector<T, std::allocator<T> >::iterator; using std::vector<T>::get_allocator; using
2010/02/17 リンク