当使用不同的编译器时,我从dynamic_cast获得不同的结果

时间:2012-04-26 00:52:44

标签: c++

根据所使用的编译器,以下程序中的断言给出了不同的结果:在GCC 4.4中,断言失败,而在CLang中则没有。看起来GCC不喜欢V在C中是私有的。这是一个错误吗?

#include <cassert>

class V {
public:
    virtual ~V() { };
};

template<class T>
class C : public T, private V {
public:
    static V* new_() {
        return new C();
    }
};

struct MyT {
};

typedef C<MyT> C_MyT;

int main(int argc, char** argv) {
    V* o2 = C_MyT::new_();
    assert(dynamic_cast<C_MyT*> (o2)); // failure in GCC, success in CLang
    return 0;
}

1 个答案:

答案 0 :(得分:2)

g ++似乎表现正常。请参阅Dynamic downcast on private inheritance within private scope,其中有一个很好的答案描述了这一点。