主文件
#include <vector>
#include <iostream>
#include "normal.h"
using namespace std;
int main()
{
return 0;
}
正常的.h
#ifndef NORMAL_H
#define NORMAL_H
#include <vector>
#include <iostream>
using namespace std;
vector < int > myvector;
myvector.push_back(12);//does not name a type
#endif
我知道我需要以某种方式包括在内vector<int> myvector
,main.cpp
但无法找到方法。我查看了我以前的程序,不需要在main.cpp
.