隐秘模板模板参数错误

时间:2013-08-13 23:06:51

标签: c++ templates c++11 types typename

我正在尝试创建一个从std::mapstd::unordered_map获取密钥的函数。我可以使用简单的重载,但首先我想知道这段代码有什么问题。

template<typename K, typename V, template<typename, typename> class TContainer>  
std::vector<K> getKeys(const TContainer<K, V>& mMap)
{
    std::vector<K> result;
    for(const auto& itr(std::begin(mMap)); itr != std::end(mMap); ++itr) result.push_back(itr->first);
    return result;
}

使用std::unordered_map调用它时,甚至手动指定所有模板类型名称,clang ++ 3.4说:

  

模板模板参数具有与其对应的模板模板参数不同的模板参数。

1 个答案:

答案 0 :(得分:4)

问题是std::mapstd::unordered_map实际上不是具有两个参数的模板。他们是:

namespace std {
    template <class Key, class T, class Compare = less<Key>,
              class Allocator = allocator<pair<const Key, T>>>
    class map;

    template <class Key, class T, class Hash = hash<Key>,
              class Pred = equal_to<Key>,
              class Allocator = allocator<pair<const Key, T>>>
    class unordered_map;
}

这是类似的功能:

template <typename K, typename... TArgs, template<typename...> class TContainer>
std::vector<K> getKeys(const TContainer<K, TArgs...>& mMap)
{
    std::vector<K> result;
    for (auto p : mMap)
        result.push_back(p.first);
    return result;
}

我更喜欢的版本:

template <typename Container>
auto getKeys2(const Container& mMap) -> std::vector<typename Container::key_type>
{
    std::vector<typename Container::key_type> result;
    for (auto p : mMap)
        result.push_back(p.first);
    return result;
}

使用两种功能的演示程序:http://ideone.com/PCkcu6