私はテンプレートを使用してC++標準ライブラリのベクトルクラスをカプセル化しようとしているが、私はエラーを得続けるがC++テンプレートラッパークラス::ベクトル
SceneVector.h: In member function ‘void scenegraph::SceneVector<V>::print()’:
SceneVector.h:40: error: expected ‘;’ before ‘it’
SceneVector.h:40: error: ‘it’ was not declared in this scope
私が作成し管理しているコードが
です#include <map>
#include <vector>
#include <iostream>
namespace scenegraph
{
template <class V> class SceneVector
{
typedef std::vector<V> Vector;
Vector vector;
public:
SceneVector();
void insert(const V value);
void print();
};
template <class V> SceneVector<V>::SceneVector()
{
vector.clear();
}
template <class V> void SceneVector<V>::insert(const V value)
{
vector.push_back(value);
}
template <class V> void SceneVector<V>::print()
{
for(Vector::iterator it = vector.begin(); it != vector.end(); ++it)
{
std::cout << "[" << (*it) << "] " << std::endl;
}
std::cout << std::endl;
}
}
誰でも私をここで修正できますか?私はC + +の初心者ですので、答えは非常に些細なものになる可能性があります。
もう1つ...あなたは 'typename'が必要です。 http://stackoverflow.com/q/1123080/51831 – jpalecek
http://www.parashift.com/c++-faq-lite/templates.html#faq-35.21 – ephemient