2

我查看了<functional>libstdc++ (g++ 4.7.1) 的源代码,发现了以下代码(l. 91 - 98):

/// Retrieve the result type for a function type.
template<typename _Res, typename... _ArgTypes>
struct _Weak_result_type_impl<_Res(_ArgTypes...)>    // (1)
{ typedef _Res result_type; };

template<typename _Res, typename... _ArgTypes>
struct _Weak_result_type_impl<_Res(_ArgTypes......)> // (2) line 97
{ typedef _Res result_type; };

虽然我认识到通常的包扩展...(1) [temp.variadic],但我不知道是什么......

......(2) 在这种情况下是什么意思?

后续问题

在下面的最小示例中,我需要什么TEST_PARAM_3类型tester<TEST_PARAM_3>::value == 2

#include <iostream>
#include <type_traits>
#include <iomanip>

template <typename Functor>
struct tester : std::integral_constant<int, 0>{};

template <typename Res, typename... Args>
struct tester<Res(Args...)> : std::integral_constant<int, 1>{};

template <typename Res, typename... Args>
struct tester<Res(Args......)> : std::integral_constant<int, 2>{};

#define STR_EXPAND(tok) #tok
#define STR(tok) STR_EXPAND(tok)
#define TEST_PARAM_1 void(*)(int, int)
#define TEST_PARAM_2 void(int, char, std::ostream&)
#define TEST_PARAM_3 void()

int main(){
    using std::setw;
    std::cout
    << setw(65)<< STR(TEST_PARAM_1) ": " << tester<TEST_PARAM_1>::value << "\n"
    << setw(65)<< STR(TEST_PARAM_2) ": " << tester<TEST_PARAM_2>::value << "\n"
    << setw(65)<< STR(TEST_PARAM_3) ": " << tester<TEST_PARAM_3>::value << "\n";
}
4

1 回答 1

1

最后一个...实际上相当于, ....

这使得模板参数:

Res(Args..., ...)

这意味着这是一个可变参数函数,具有模板可变参数数量的固定参数。

于 2013-06-12T08:15:36.567 回答