Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
CMap(intnBlockSize**=10);**
Parameters
nBlockSize
Specifies the memory-allocation granularity for extending the map.
Remarks
Constructs an empty map. As the map grows, memory is allocated in units of nBlockSize entries.
Example
// declares a map of ints to points
CMap<int,int,CPoint,CPoint> myMap(16);