寫了這樣一個類:
class Base{
private:
int r[MAX_SIZE];
int length;
public:
Base()
{
r[MAX_SIZE] = {1,2,0,5,8,9,7,3,6,4}; //編譯的時候在這邊出錯
length = 10;
}
void swap_data(int,int);
void Show(const Base &ob);
friend int Bubble_Sort0(Base &ob);
};
出錯原因是:
1.cpp: In constructor ‘Base::Base()’:
1.cpp:13: 警告:extended initializer lists 只在 -std=c++0x 或 -std=gnu++0x 下可用
1.cpp:13: 錯誤:不能將‘’轉換為‘int’,在 assignment 中
請問各位大神,這是什麼意思?有什麼解決辦法?
你這種復制方式只能在定義數組時使用,定義完了以後都只能用循環逐個復制。