当前位置: 技术问答>linux和unix
我的程序为什么通不过编译?
来源: 互联网 发布时间:2015-08-24
本文导语: 我用下面命令 gcc -o hello hello.cpp 出了大堆错误,见最后 // hello.cpp #include #include #include using namespace std; int main() { vector vecStr; string str("a"); vecStr.push_back(str); vecStr.push_back(str); typedef vector::iterator VSIter; f...
我用下面命令
gcc -o hello hello.cpp
出了大堆错误,见最后
// hello.cpp
#include
#include
#include
using namespace std;
int main()
{
vector vecStr;
string str("a");
vecStr.push_back(str);
vecStr.push_back(str);
typedef vector::iterator VSIter;
for (VSIter iter = vecStr.begin(); iter!= vecStr.end(); iter++) {
cout
gcc -o hello hello.cpp
出了大堆错误,见最后
// hello.cpp
#include
#include
#include
using namespace std;
int main()
{
vector vecStr;
string str("a");
vecStr.push_back(str);
vecStr.push_back(str);
typedef vector::iterator VSIter;
for (VSIter iter = vecStr.begin(); iter!= vecStr.end(); iter++) {
cout