适用于任何矢量<any arithmetic data_type> </any_arithmetic data_type>的专用模板

时间:2011-09-29 09:30:10

标签: c++ templates boost

我有一个模板方法,其中包含boolvector<string>类型的两个专用版本。

基础版:

template <class T> 
const T InternGetValue(const std::string& pfad) const
{
  ...   
}

专业版:

template <>
const bool InternGetValue(const std::string& pfad) const
{
  ...
}  

template <>
const std::vector<std::string> InternGetValue< std::vector<std::string>>(const std::string& pfad) const
{
...
}

现在我想实现一个专门化,它将接受所有类型的vector<aritmethic_data_type> vector<double> vector<int>vector<float>

我可以通过为上述类型编写重载来实现这一点,但我有兴趣通过另一个专业化来实现我的目标。

这是我到目前为止所尝试的(导致错误'非法使用显式模板参数'):

template <class T>
const std::vector<T> InternGetValue< std::vector<T>>(const std::string& pfad, typename boost::enable_if<boost::is_arithmetic<T>>::type* dummy = 0) const
{
}

2 个答案:

答案 0 :(得分:8)

我认为std::enable_ifstd::is_integral可以解决这个问题:

template<typename T>
std::vector<typename std::enable_if<std::is_integral<T>::value, T>::type> 
f(const std::string& d);

如果std::没有,请尽可能使用boost::。它有它们。

答案 1 :(得分:5)

好的uber很复杂,但我把它全部搞定了。我不能在第一个(默认)函数重载内的is_integral类型上检查value_type,因为这会导致SFINAE删除非向量的重载。

与Nawaz的解决方案不同,这不需要添加虚拟参数,但它确实需要在默认函数模板上使用enable_if条件。

这适用于VS2010。

#include <vector>
#include <string>
#include <type_traits>

using namespace std;

template <typename T> struct is_vector { static const bool value = false; };
template <typename T> struct is_vector< std::vector<T> > { static const bool value = true; };

// metafunction to extract what type a vector is specialised on
// vector_type<vector<T>>::type == T
template <class T>
struct vector_type
{
private:
    template <class T>
    struct ident
    {
        typedef T type;
    };

    template <class C> 
    static ident<C> test(vector<C>);

    static ident<void> test(...);

    typedef decltype(test(T())) vec_type;
public:
    typedef typename vec_type::type type;
};

// default version
template <class T>
const typename enable_if<!is_vector<T>::value || !is_integral<typename vector_type<T>::type>::value, T>::type
InternGetValue(const std::string& pfad)
{
    return T();
}

// bool specialisation
template <>
const bool
InternGetValue<bool>(const std::string& pfad)
{
    return true;
}

// vector<string> specialisation
template <>
const vector<string>
InternGetValue<vector<string>>(const std::string& pfad)
{
    return vector<string>();
}

// vector<T> specialisation (where T is integral)
template <class T>
const typename enable_if<is_vector<T>::value && is_integral<typename vector_type<T>::type>::value, T>::type
InternGetValue(const std::string& pfad)
{
    return T();
}

int main()
{
    string x;
    auto a = InternGetValue<int>(x);
    auto b = InternGetValue<bool>(x);
    auto c = InternGetValue<vector<string>>(x);
    auto d = InternGetValue<vector<pair<int, int>>>(x);
    auto e = InternGetValue<vector<int>>(x);
}