初学C++有问题诚心求教
#include "stdafx.h"#include<vector>
#include<iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
int a[10]={45,57,65,78,21,56,34,94,14};
vector<int>ivec(a,a+9);
for(int i=0;i<10;i++)
cout<<ivec<<" ";
return 0;
}
上面程序用vc2008运行后提示找不到vector头文件 我打开include文件夹 发现有vector.h啊!
1>vec.cpp
1>c:\documents and settings\administrator\my documents\visual studio 2008\projects\vec\vec\vec.cpp(5) : fatal error C1083: 无法打开包括文件:“vector”: No such file or directory
1>生成日志保存在“file://c:\Documents and Settings\Administrator\My Documents\Visual Studio 2008\Projects\vec\vec\Debug\BuildLog.htm”
1>vec - 1 个错误,0 个警告
========== 生成: 成功 0 个,失败 1 个,最新 0 个,跳过 0 个 ==========
[[it] 本帖最后由 hyqhero 于 2008-8-16 22:31 编辑 [/it]]