程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c++-簡單重寫stl裡vector的構造函數

c++-簡單重寫stl裡vector的構造函數

編輯:編程綜合問答
簡單重寫stl裡vector的構造函數

#include
#include
#include
using namespace std;

template
class Vector
{
private:
int size;
T* list;
public:
Vector(int sz);
Vector(int sz, T t(int s));
~Vector(){ delete[] list; }
T& operator ;
};

//構造函數
template
Vector::Vector(int sz)
{
size = sz;
list = new T [size];
}

//構造函數
template
Vector::Vector(int sz, T t(int s))
{
size = sz;
list = new T [size];
for(int i=0; i<size; i++)
{

list[i] = t;
}
}

//重載運算符[]
templateT& Vector::operator
{
if( n=size )
{

cout<<"OUT OF RANGE"<<endl;
exit(1);
}
else
{

return list[n];
}
}

int main()
{
Vector< Vector > v( 10, Vector (5) );
return 0;
}

//編譯不通過,不知道怎麼改,求指點

最佳回答:


 template<class T>
Vector<T>::Vector(int sz, T t(int s))
這個構造函數第二個參數是T,不是Vector<T>
但是你調用的時候傳了Vector
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved