我有麻烦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() {}