2

我在这里问了一个问题,C++ template argument with expression,得到了答案,但现在我想继续做这样的事情:

#include <complex>
#include <type_traits>

using namespace std;

template<class T, class U>
complex< conditional<(sizeof( T ) > sizeof( U )), T, U>::type > my_method(T x, U y)  { }


这给了我错误:

main.cpp:10:65: error: type/value mismatch at argument 1 in template parameter list for ‘template<class _Tp> struct std::complex’
main.cpp:10:65: error:   expected a type, got ‘std::conditional<(sizeof (T) > sizeof (U)), int, float>::type’


我尝试在 T 和 U 之前添加关键字 typename 和 class,但这也改变了错误:

main.cpp:37:1: error: wrong number of template arguments (1, should be 3)
/usr/include/c++/4.7/type_traits:77:12: error: provided for ‘template<bool <anonymous>, class, class> struct std::conditional’
main.cpp:10:10: error: template argument 1 is invalid
main.cpp:10:1: error: expected unqualified-id at end of input


我在 Linux 上使用带有 -std=c++11 的 g++ 作为编译器选项。反正有什么我想做的事吗?谢谢。

4

1 回答 1

2

正如您的编译器所说:

main.cpp:10:65: error:   expected a type, got ‘std::conditional<(sizeof (T) > sizeof (U)), int, float>::type’

之前缺少类型名std::conditional<...

于 2013-08-13T22:24:34.710 回答