src/work/klao/map_test.cc
author marci
Thu, 29 Apr 2004 16:04:27 +0000
changeset 473 2cef25dcde3f
parent 283 91e78d9b78f4
child 618 e944d741f472
permissions -rw-r--r--
ledagraph
     1 #include <iostream>
     2 
     3 #include <maps.h>
     4 
     5 using namespace std;
     6 using namespace hugo;
     7 
     8 int main()
     9 {
    10   ConstMap<int, char> a('#');
    11 
    12   cout << "sizeof ConstMap<int,char> = " << sizeof a << endl;
    13   cout << "a[5] = " << a[5] << endl;
    14 
    15   StdMap<int, char> b('$');
    16   cout << "sizeof ConstMap<int,char> = " << sizeof b << endl;
    17   cout << "sizeof std::map<int,char> = "
    18        << sizeof(std::map<int,char>) << endl;
    19   cout << "b[5] = " << b[5] << endl;
    20 
    21   b[5]='l';
    22   cout << "b[5] = " << b[5] << endl;
    23 }