3
對於C++來說,合理的新手,我試圖在我的應用程序中使用向量。 我使用Borland C++ Builder 6 - E2316'vector'不是'std'的成員
#include <vector>
在頭文件
,但是當我編譯它在這條線失敗:
std::vector<Shot> shot_list;
注意到錯誤E2316「載體」不是「STD」
的成員如果我然後刪除std ::,它導致未定義的符號'向量'編譯器錯誤消息。真的在這一個損失。在使用載體之前沒有使用的問題
std::list<Shot> shot_list;
。
下面是一個簡單的例子,不能comile:
//---------------------------------------------------------------------------
#ifndef testclassH
#define testclassH
//---------------------------------------------------------------------------
#include <vector>
class TestClass {
private:
std::vector<int> testVect(1); // removing std:: and adding using namespace std; below the include for the vector it still fails to compile;
};
#endif
要我,我不看到這一點,This Example
您對'testVect'的聲明是錯誤的。擺脫'(1)'部分,它應該只是'std :: vector testVect;'本身。 –
2012-05-02 22:21:00