不重复用作模板参数的类型

时间:2010-10-29 15:42:01

标签: c++ templates

鉴于以下代码是否有更好的方法来纠正它,不会重复typename std::iterator_traits<T>::iterator_category两次?

template<class T, class T2>
struct foo :
    bar<
        foo<T, T2>, typename 
        std::conditional<
            std::is_same<typename 
                std::iterator_traits<T>::iterator_category,  //Repeated
                std::random_access_iterator_tag
            >::value,
            std::bidirectional_iterator_tag, typename 
            std::iterator_traits<T>::iterator_category       //Repeated
        >::type
    >
{}

2 个答案:

答案 0 :(得分:3)

将其拆分(无论如何应该是这样):

// put in detail namespace/file or something in real code
template<class T, class T2>
struct foo_base
{
    typedef foo<T, T2> foo_type;
    typedef typename std::iterator_traits<T>::iterator_category category_type;

    static const bool random_access = std::is_same<category_type,
                                        std::random_access_iterator_tag>::value;
    typedef typename std::conditional<random_access,
                                        std::bidirectional_iterator_tag,
                                        category_type>::type tag_type;

    typedef bar<foo_type, tag_type>::type base_type;
}

template<class T, class T2>
struct foo :
   foo_base<T, T2>::base_type
{};

即使没有重复位,您仍应将其拆分以使基类型逻辑与实际继承基类型分开。

答案 1 :(得分:0)

你可以typedef

typedef std::iterator_traits<T>::iterator_category it_cat;