如何在C模板中使用比较表达式?

前端之家收集整理的这篇文章主要介绍了如何在C模板中使用比较表达式?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
#include <type_traits>

template<int n>
std::enable_if_t<n == 1,int> f() {}
// OK

template<int n>
std::enable_if_t<n > 1,int> g() {} 
// VS2015 : error C2988: unrecognizable template declaration/definition

int main()
{}

我知道错误是由于编译器采用“大于”符号’>’作为模板终止标志.

我的问题是:在这种情况下,如何使比较表达合法?

解决方法

将表达式放在括号中:
#include <type_traits>

template<int n>
std::enable_if_t<(n == 1),int> f() { }

template<int n>
std::enable_if_t<(n > 1),int> g() { } 

int main() { }
原文链接:https://www.f2er.com/c/111021.html

猜你在找的C&C++相关文章