我正在使用 Visual Studio 2008。这是我的代码:
#include "stdafx.h"
#include <conio.h>
#include <hash_map>
#include <iostream>
using namespace std;
hash_map <int, int> hm;
int main()
{
return 0;
}
这是我的错误:
error C2143: syntax error : missing ';' before '<'
error C4430: missing type specifier - int assumed. Note: C++ does not support default-int