C++學習:關於「std::vector::iterator」的一個錯誤

在類模板裏面定義以下迭代器:spa template<class Type> class className { private: vector<Type>::iterator iter; }; 則會出現以下圖所示的錯誤:code   這是因爲:vector自己就是模板,在其模板參數未肯定以前,也就是Type 的具體類型沒有肯定以前,這個Type是未知的。blog   解決方法以
相關文章
相關標籤/搜索