C模板参数用表达式

前端之家收集整理的这篇文章主要介绍了C模板参数用表达式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有麻烦C.我想把一个表达式放在模板中作为参数.这是我的代码
#include <vector>
using namespace std;

vector<  ((1>0) ? float : int) > abc() {
}

int main(void){
  return 0;
}

这给我错误

main.cpp:11:14: error: template argument 1 is invalid
main.cpp:11:14: error: template argument 2 is invalid
main.cpp:11:15: error: expected unqualified-id before ‘{’ token

最后,我想要替换1和0为任何,而float和int为typename T和U.为什么它认为有两个参数?那我该如何解决呢?
(对不起,如果这是一个重复的,我确实有一个很好的解决方案)

解决方法

使用std :: conditional:
#include <type_traits> 
std::vector<std::conditional<(1 > 0),float,int>::type> abc() {}
原文链接:https://www.f2er.com/c/112180.html

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