#include <QMultiMap>
template <typename TKey, typename TValue>
TKey lastKeyOf(const QMap<TKey, TValue>& map)
{
if (map.isEmpty())
throw something;
return (map.end() - 1).key();
}
我问的原因是:
template <typename TKey, typename TValue>
QMultiMap<TKey, TValue>;
QMap<TKey, TValue>
公开继承。所以如果我打电话:
QMultiMap<int, std::string> multimap;
...
lastKeyOf(multimap);
内部的所有调用lastKeyOf
都静态绑定到它们的QMap
版本而不是QMultiMap
版本,因为QMap
不打算用于多态使用(没有虚拟析构函数)。
我什至不确定这种用途叫什么。是对象切片吗?