当前位置:  开发笔记 > 编程语言 > 正文

无法让SFINAE工作

如何解决《无法让SFINAE工作》经验,为你挑选了1个好方法。

这是我在SFINAE的第一次尝试:

#include 
#include 

struct C1 {
    using T = int;
};

struct C2 {
    using T = void;
};

// For classes that declare T = int
template 
void f(C &c,
       std::enable_if::value, int>::type = 0) {
    std::cout << "With T" << std::endl;
}

// For classes that declare T = void
template 
void f(C &c,
       std::enable_if::value, int>::type = 0) {
    std::cout << "Without T" << std::endl;
}

int main() {
    C1 c1;
    f(c1); // With T
    C2 c2;
    f(c2); // Without T
    return 0;
}

编译器(gcc 4.8.2)抱怨:

‘std::enable_if::value), int>::type’ is not a type 

我究竟做错了什么?



1> 101010..:

你需要几个typenames才能工作:

// For classes that declare T = int
template 
void f(C &c,
       typename std::enable_if::value, int>::type = 0) {
    std::cout << "With T" << std::endl;
}

// For classes that declare T = void
template 
void f(C &c,
       typename std::enable_if::value, int>::type = 0) {
    std::cout << "Without T" << std::endl;
}

或者,如果您的编译器支持C++ 14,您可以使用std::enable_if_t:

// For classes that declare T = int
template 
void f(C &c,
       std::enable_if_t::value, int> = 0) {
    std::cout << "With T" << std::endl;
}

// For classes that declare T = void
template 
void f(C &c,
       std::enable_if_t::value, int> = 0) {
    std::cout << "Without T" << std::endl;
}

推荐阅读
携手相约幸福
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有