/******************************************
: 仿函数+模板类的特化
* !!!:要特别注意形式,错一点就编译不过
(那两个const)
******************************************/
ACE_TEMPLATE_SPECIALIZATION //template<>
class ACE_Hash
{
public:
_UL operator()(const content_id_t &cid)const {
return ( cid.firstBlock & cid.secondBlock);
}
};
阅读(1363) | 评论(0) | 转发(0) |