12

考虑一下:

template <typename T>
struct hash
{
     static_assert(false,"Not implemented.");
};

struct unhashable {};

template <typename T>
auto test(const T &t) -> decltype((*(hash<T> const *)nullptr)(t),int);

void test(...);

int main()
{
    std::cout << std::is_same<decltype(test(std::declval<unhashable>())),void>::value;
}

除了明显缺少标题之外,这应该编译吗?

换句话说,我在询问是否请求在推断重载函数模板的返回值时在尾随 decltype 内触发的静态断言失败来停止编译,或者是否必须简单地丢弃重载。

在 gcc 4.7 上,编译失败。我很肯定这将在 gcc 4.8 中编译好(但此时无法检查)。谁是对的?

4

2 回答 2

21

在任何兼容的编译器中编译都必须失败。

SFINAE 规则基于声明而非定义。(对不起,如果我在这里使用了错误的术语。)我的意思是:

对于类/结构:

template < /* substitution failures here are not errors */ >
struct my_struct {
    // Substitution failures here are errors.
};

对于一个函数:

template </* substitution failures here are not errors */>
/* substitution failures here are not errors */
my_function( /* substitution failures here are not errors */) {
    /* substitution failures here are errors */
}

此外,给定模板参数集的结构/函数不存在也受 SFINAE 规则的约束。

现在 astatic_assert只能出现在替换失败是错误的区域中,因此,如果它触发,您将收到编译器错误。

例如,以下将是错误的实现enable_if

// Primary template (OK)
template <bool, typename T>
struct enable_if;

// Specialization for true (also OK)
template <typename T>
struct enable_if<true, T> {
    using type = T;
};

// Specialization for false (Wrong!)
template <typename T>
struct enable_if<false, T> {
    static_assert(std::is_same<T, T*>::value, "No SFINAE here");
    // The condition is always false.
    // Notice also that the condition depends on T but it doesn't make any difference.
};

然后试试这个

template <typename T>
typename enable_if<std::is_integral<T>::value, int>::type
test(const T &t);

void test(...);

int main()
{
    std::cout << std::is_same<decltype(test(0)), int>::value << std::endl; // OK
    std::cout << std::is_same<decltype(test(0.0)), void>::value << std::endl; // Error: No SFINAE Here
}

如果您删除 for 的特化enable_iffalse则代码将编译并输出

1
1
于 2013-04-30T16:31:04.553 回答
6

在 gcc 4.7 上,编译失败。我很肯定这将在 gcc 4.8 中编译好(但此时无法检查)。谁是对的?

静态断言中的条件不依赖于任何模板参数。因此,编译器可以在解析模板时立即评估它false,并意识到断言应该触发 - 无论您是否在其他任何地方实际实例化模板。

在任何编译器上都应该如此。

于 2013-04-30T15:03:46.677 回答