10

我试图为C++模板非类型参数类型推导的问题找到解决方案,它不涉及调用f的模板参数,而是为模板参数隐式选择正确的类型。

由于constexpr应该保证一个函数只包含编译时常量,并且在编译时进行评估(至少我认为它是这样做的),我认为它可能是这个问题的解决方案。所以我想出了这个:

template <class T, T VALUE> void f() {}

//first i tried this:
template <class T> auto get_f(T t) -> decltype( &f<T,t> ) { return f<T,t>; }

//second try:
template <class T> constexpr void (&get_f( T t ))()  { return f<T,t>; }

int main()
{
    get_f(10)(); //gets correct f and calls it
}

第一个版本产生以下错误:

error: use of parameter 't' outside function body

这真的很令人困惑,因为在尾随返回类型的 decltype 语句中使用参数应该可以吗?

第二个版本产生以下错误:

error: invalid initialization of non-const reference of type 'void (&)()' 
       from an rvalue of type '<unresolved overloaded function type>'

这有点令人困惑,因为我完全符合资格fget_f如果我没有constexpr. 那么我对什么有错误的理解constexpr,或者 GCC 的 C++0x 实现在这种情况下是否存在缺陷?

我正在使用 GCC 4.6.2

4

1 回答 1

5

由于 constexpr 应该保证一个函数只包含编译时常量,并且在编译时进行评估(至少我认为它是这样做的),我认为它可能是这个问题的解决方案。

constexpr函数可以在常量表达式上下文中使用,但不限于一个。在这方面,它们不同于元功能和常规功能。考虑返回整数后继的问题:

// Regular function
int f(int i)
{ return i + 1; }

// Regular metafunction
template<int I>
struct g {
    static constexpr auto value = I + 1;
};

// constexpr function
constexpr int h(int i)
{ return i + 1; }

// Then...
{
    // runtime context: the metafunction can't be used
    int i;
    std::cin >> i;

    f(i); // Okay
    g<i>::value; // Invalid
    h(i); // Okay

    // compile time context: the regular function can't be used
    char a[f(42)]; // Invalid
    char b[g<42>::value]; // Okay
    char c[h(42)]; // Okay
}

constexpr有其他用法(例如构造函数),但是当涉及到constexpr函数时,这是它的要点:一些函数应该在运行时和常量上下文中都可用,因为一些计算在两者中都可用。可以计算i + 1i编译时常量还是从std::cin.

这意味着在constexpr函数体内,参数本身并不是常量表达式。所以你正在尝试的是不可能的。您的功能无法处理

int i;
std::cin >> i;
get_f(i); // what's the return type?

违规发生在这里:

constexpr auto get_f(T t)
-> decltype( &f<T,t> ) // <-

由于t不是根据语言规则的常量表达式(无论如何,即使你实际上只是传入常量表达式),它不能作为 . 的第二个模板参数出现f

(在大图中,这意味着不,您不能使用函数模板中的参数推导来方便地将非类型参数传递给模板。)

于 2011-07-18T23:58:48.427 回答