5

在调试了我的代码一段时间后,我使用 enable_if 将问题的原因归结为一些意想不到的模板专业化结果:

以下代码在 Visual Studio 2010(和 2008)中的 DoTest() 中的断言失败,而在 g++ 3.4.5 中则没有。但是,当我从SomeClass中删除模板或将my_condition移出SomeClass的范围时,它也可以在 MSVC 中使用。

这段代码是否有问题可以解释这种行为(至少部分),或者这是 MSVC 编译器中的错误?

(使用此示例代码对于 boost 和 c++0x stl 版本是相同的)

#include <cassert>
#include <boost\utility\enable_if.hpp>

template <class X>
class SomeClass {
public:
    template <class T>
    struct my_condition {
        static const bool value = true;
    };

    template <class T, class Enable = void> 
    struct enable_if_tester { 
        bool operator()() { return false; }
    };

    template <class T>
    struct enable_if_tester<T, typename boost::enable_if< my_condition<T> >::type> { 
        bool operator()() { return true; }
    };

    template <class T>
    void DoTest() {
        enable_if_tester<T> test;
        assert( test() );
    }
};

int main() {
    SomeClass<float>().DoTest<int>();
    return 0;
}

当试图通过将条件移出范围来修复它时,我还注意到在使用 std::enable_if 时这还不够,但至少它适用于 boost::enable_if:

#include <cassert>
//#include <boost\utility\enable_if.hpp>
#include <type_traits>

template <class T, class X>
struct my_condition {
    static const bool value = true;
};

template <class X>
class SomeClass {
public:
    template <class T, class Enable = void> 
    struct enable_if_tester { 
        bool operator()() { return false; }
    };

    template <class T>
    //struct enable_if_tester<T, typename boost::enable_if< my_condition<T, X> >::type> { 
    struct enable_if_tester<T, typename std::enable_if< my_condition<T, X>::value >::type> { 
        bool operator()() { return true; }
    };

    template <class T>
    void DoTest() {
        enable_if_tester<T> test;
        assert( test() );
    }
};

int main() {
    SomeClass<float>().DoTest<int>();
    return 0;
}

我希望有人对此有解释。

4

1 回答 1

5

你的代码一切都很好,只是VC有问题。众所周知,模板成员类的部分模板特化存在问题。

于 2010-07-09T01:32:34.333 回答