#include #include using namespace std; using namespace hugo; int main() { ConstMap a('#'); cout << "sizeof ConstMap = " << sizeof a << endl; cout << "a[5] = " << a[5] << endl; StdMap b('$'); cout << "sizeof ConstMap = " << sizeof b << endl; cout << "sizeof std::map = " << sizeof(std::map) << endl; cout << "b[5] = " << b[5] << endl; b[5]='l'; cout << "b[5] = " << b[5] << endl; }