Clang vs. GCC vs. MSVC中的SFINAE和可见性检查——这是正确的

SFINAE and visibility-checking in Clang vs. GCC vs. MSVC -- which is correct?

本文关键字:vs 检查 可见性 MSVC GCC 中的 SFINAE Clang      更新时间:2023-10-16

我已经写了我对is_default_constructible的c++ 03兼容实现的尝试:

template<class = void> struct is_default_constructible;
template<> struct is_default_constructible<>
{
protected:
    // Put base typedefs here to avoid pollution
    struct twoc { char a, b; };
    template<bool> struct test { typedef char type; };
    template<class T> static T declval();
};
template<> struct is_default_constructible<>::test<true> { typedef twoc type; };
template<class T> struct is_default_constructible : is_default_constructible<>
{
private:
    template<class U> static typename test<!!sizeof(::new U())>::type sfinae(U*);
    template<class U> static char sfinae(...);
public:
    static bool const value = sizeof(sfinae<T>(0)) > 1;
};

当我在GCC (-std=c++03)中测试它时,它返回0,因为构造函数是不可见的:

class Test { Test(); };
int main()
{
    return is_default_constructible<Test>::value;
}

当我在Visual c++中测试它时(不同的版本都有相同的行为),我得到了1

当我在Clang(也是-std=c++03)中测试它时,我得到:

error: calling a private constructor of class 'Test'
template<class U> static typename test<!!sizeof(::new U())>::type sfinae(U *);
                                                      ^
note: while substituting explicitly-specified template arguments into function template 'sfinae' 
static bool const value = sizeof(sfinae<T>(0)) > 1;
                                 ^
note: in instantiation of template class 'is_default_constructible<Test>' requested here
return is_default_constructible<Test>::value;
       ^
error: calling a private constructor of class 'Test'
template<class U> static typename test<!!sizeof(::new U())>::type sfinae(U *);
                                                      ^
note: while substituting deduced template arguments into function template 'sfinae' [with U = Test]
static bool const value = sizeof(sfinae<T>(0)) > 1;
                                 ^
note: in instantiation of template class 'is_default_constructible<Test>' requested here
return is_default_constructible<Test>::value;

哪个编译器是正确的,为什么?

该代码在c++ 03中无效,但在c++ 11中有效。c++ 4.8编译器遵循c++ 11规则并忽略SFINAE上下文中不可访问的成员,而clang编译器遵循c++ 03,其中成员(在本例中为构造函数)被找到并选择,但访问检查使代码无效。VS(无论你使用的是什么版本)不遵守c++ 11或c++ 03规则,它似乎完全忽略了sizeof内部的访问说明符。