C++:为什么不能编译?
我有以下从 google 的spareshash 网站获得的 C++ 代码:
#include <iostream>
#include <google/dense_hash_map>
#include <string.h>
using google::dense_hash_map; // namespace where class lives by default
using std::cout;
using std::endl;
using ext::hash; // or __gnu_cxx::hash, or maybe tr1::hash, depending on your OS
struct eqstr
{
bool operator()(const char* s1, const char* s2) const
{
return (s1 == s2) || (s1 && s2 && strcmp(s1, s2) == 0);
}
};
int main(void){
dense_hash_map<const char*, int, hash<const char*>, eqstr> months;
months.set_empty_key(NULL);
months["january"] = 31;
months["february"] = 28;
months["march"] = 31;
months["april"] = 30;
months["may"] = 31;
months["june"] = 30;
months["july"] = 31;
months["august"] = 31;
months["september"] = 30;
months["october"] = 31;
months["november"] = 30;
months["december"] = 31;
cout << "september -> " << months["september"] << endl;
cout << "april -> " << months["april"] << endl;
cout << "june -> " << months["june"] << endl;
cout << "november -> " << months["november"] << endl;
}
我收到以下错误:
using ext::hash
“ext”尚未声明
dense_hash_map
- “hash”未在此范围内声明
- 模板参数 3 无效
- “,”标记之前应有非限定 ID
- 预期的初始值设定项位于“>”之前令牌
和months.set_empty_key(NULL);
“months”未在此范围内声明
我是一个 C++ 菜鸟,希望有人能给我指出正确的方向。
预先非常感谢,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许您应该尝试用
tr1::hash
替换ext::hash
。Maybe thou shalt try to replace
ext::hash
bytr1::hash
.您是否尝试按照评论的建议将 ext::hash 替换为 __gnu_cxx::hash 或 tr1::hash ?
Have you tried to replace ext::hash by __gnu_cxx::hash or tr1::hash as suggested by the comment?