STL之map,multimap
- 头文件及声明
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace std
{
template <typename Key, typename T,
typename Compare = less<key>,
typename Allocator = allocator<pair<const Key, T>>>
class map;
template <typename Key, typename T,
typename Compare = less<key>,
typename Allocator = allocator<pair<const Key, T>>>
class multimap;
}