2

以下代码无法在 MSVStudio 2010 Express 中编译,似乎是因为 boost 容器声明创建了包含类型的(静态?)实例。更改boost::ptr_list<TypeContained>std::list<TypeContained *>使其编译成功,但我喜欢 boost 容器。任何人都知道我该如何解决这个问题?错误是error C2504: 'Proxy<TypeContainer,TypeContained>' : base class undefined

#include <string>
#include <boost/ptr_container/ptr_list.hpp>

template <typename TypeContainer, typename TypeContained>
class Proxy
{
private:
    typename boost::ptr_list<TypeContained>::iterator m_clsPosition;

public:
    class Container {};
};

template <typename V> class Container;

template <typename V>
class Dependent : public Proxy<Container<V>, Dependent<V> >,
                  public V {};

template <typename V>
class Container : public Proxy<Container<V>, Dependent<V> >::Container {};

int main(int argc, char * argv[])
{
    Container<std::string> clsContainer;
    return 0;
}
4

1 回答 1

0

所以,用clang编译,问题在于boost试图在TypeContainer上使用sizeof,但此时,还没有确定TypeContainer的大小,因为你还在定义它。

因此,作为一个更简单的情况,根本问题是:

template <typename A>
class T {
    static const int a = sizeof(T<A>);
};

int main() {
    T<int> d;
}

换句话说,通过调用 sizeof 创建了一个循环依赖项,但使用指针(具有已知大小),永远不会创建此依赖项。

于 2013-03-07T19:29:16.087 回答