- 论坛徽章:
- 0
|
sgi的hash_map提供了hash_map(size_t n)来提供建立一个bucket数量不小于n的空的hash_map对象。一般buket数量至少为53。我写了如下的code。
#include <iosream>
#include <ext/hash_map>
using namespace std;
using namespace __gnu_cxx;
class Table {
public:
Table();
hash_map< int, int > tbl;
};
int main() {
Table a;
cout << a.tbl.bucket_count() << endl;
return 0;
}
运行结果显示Table对象的缺省bucket数量是193。为节省空间,我需要将它改成53甚至更低, 如何实现啊?
我尝试将上面的class定义改为如下
class Table {
public:
Table();
hash_map< int, int > tbl(0);
};
但编译时出现如下错误:
error: expected identifier before numeric constant
error: expected ',' or '...' before numeric constant
[ 本帖最后由 yacare 于 2007-7-30 04:35 编辑 ] |
|