11

是否可以按照概念 TS 的建议在概念内使用typedefusing声明类型别名?如果我尝试类似以下 MWE,则代码无法编译(使用 gcc 6.2.1 和-fconcepts开关)

#include <type_traits>

template<typename T>
concept bool TestConcept ()
{
    return requires(T t)
    {
        using V = T;
        std::is_integral<V>::value;
    };
}

int main()
{
    return 0;
}

结果错误:

main.cpp: In function ‘concept bool TestConcept()’:
main.cpp:8:9:  error: expected primary-expression before ‘using’  
         using V = T;  
         ^~~~~   
main.cpp:8:9: error: expected ‘}’ before ‘using’
main.cpp:8:9: error: expected ‘;’ before ‘using’
main.cpp:4:14: error: definition of concept ‘concept bool TestConcept()’ has multiple  statements
 concept bool TestConcept ()  
              ^~~~~~~~~~~ 
main.cpp: At global scope:
main.cpp:11:1: error: expected declaration before ‘}’ token
 } 
 ^
4

2 回答 2

3

不,根据概念 TS,要求是:

需求
    简单需求
    类型需求
    复合需求
    嵌套需求

简单需求是一个后跟 a的表达式;类型需求类似于typename T::inner. 另外两个听起来就像名字所暗示的那样。

类型别名是声明,而不是表达式,因此不满足需求的要求。

于 2016-11-01T17:46:49.823 回答
3

这对我来说是不必要的限制。您是否知道是否存在合理的解决方法,而不是一遍又一遍地编写相同的复杂类型?

您可以将约束的实现推迟到另一个概念,将这些类型作为模板参数传递:

template<typename Cont, typename It, typename Value>
concept bool InsertableWith = requires(Cont cont, It it, Value value) {
    // use It and Value as much as necessary
    cont.insert(it, std::move(value));
};

template<typename Cont>
concept bool Insertable = requires {
    // optional
    typename Cont::const_iterator;
    typename Cont::value_type;
} && InsertableWith<Cont, typename Cont::const_iterator, typename Cont::value_type>;

如果您正在考虑这样做,我建议您在做出决定之前先尝试简单的示例。你如何编写你的概念和约束决定了编译器如何报告错误,当然,有好的错误是使概念有用的重要部分。让我的概念更容易编写,同时让错误更难理解,这不是我会掉以轻心的权衡。

例如,这就是我冗余添加typename Cont::const_iterator;为显式约束的原因。这使编译器有机会报告此类型要求。我在选择这个概念的名称时也很小心InsertableWith:我本可以很容易地使用detail::Insertable,但是涉及两者的错误Insertable可能detail::Insertable会导致更加混乱。

最后请注意,这一切都取决于编译器的实现质量,所以我不希望任何方法暂时是确定的。我鼓励玩这个Coliru 演示

于 2016-11-16T00:09:27.620 回答