问题描述
- STL map关键字类型有限制吗?
-
STL map 的关键字key 的类型有限制吗?可以是类类型吗?
解决方案
可以是类类型,但是你的类要实现operator <
bool operator<(const a& a1, const a& a2)
{
if ( a1.m_a>=a2.m_a )
return false;
return true;
}
解决方案二:
STL的map类型
C++ STL map类型简介
时间: 2025-01-31 09:17:43