map<string ,int,less<string> > STR2INT; 怎样理解这条语句? 5
展开全部
map为一个模板,STL 中的 有序容器,其定义为
template < class Key, // map::key_type
class T, // map::mapped_type
class Compare = less<Key>, // map::key_compare
class Alloc = allocator<pair<const Key,T> > // map::allocator_type
> class map;
也就是说,代码用 string,int和less<string> 三个参数(第四个被缺省了)实例化模板map,并定义了该模板实例的对象STR2INT。
less也是一个模板,less<string> 是less模板的一个实例。
BTW,我猜想 这段代码之前 还应该有个 typedef
template < class Key, // map::key_type
class T, // map::mapped_type
class Compare = less<Key>, // map::key_compare
class Alloc = allocator<pair<const Key,T> > // map::allocator_type
> class map;
也就是说,代码用 string,int和less<string> 三个参数(第四个被缺省了)实例化模板map,并定义了该模板实例的对象STR2INT。
less也是一个模板,less<string> 是less模板的一个实例。
BTW,我猜想 这段代码之前 还应该有个 typedef
追问
是的,省略了typedef,less是个类模板,它有什么功能呢?
追答
template struct less : binary_function {
bool operator() (constT& x,constT& y) const {
returnx<y;
}
};
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询