示例#1
-1
 function testNormalMap()
 {
     $map = new HashMap("string", "integer");
     $map->put("123", 4);
     $map->put("567", 8);
     $this->assertEqual("{123:4,567:8}", $map->__toString());
 }