模板类的内部类不会在XCode 4.5.2上编译

时间:2013-02-27 00:33:39

标签: c++ xcode templates stl iterator

在XCode 4.5.2中,如下定义的类Proxy无法编译。如果需要,我可以提供有关特定编译器的更多详细信息,尽管它应该是默认值,因为我没有更改XCode配置中的任何内容。它在VStudio Express中编译。

#include <list>
#include <boost/thread/tss.hpp>

template <typename T>
class Cache
{
public:
    class Proxy : public T
    {
        friend class Cache;

    private:
        std::list<Proxy> & m_refList;
        typename std::list<Proxy>::iterator m_clsPosition;

        Proxy(std::list<Proxy> & refList) : m_refList(refList) {}
    };

private:
    std::list<Proxy> m_clsList;
    typename std::list<Proxy>::iterator m_clsCurrent;

    static void Release(Proxy * ptrProxy)
    {
        ptrProxy->m_refList.splice(ptrProxy->m_refList.m_clsCurrent,
                                   ptrProxy->m_refList,
                                   ptrProxy->m_clsPosition);
        if ( ptrProxy->m_refList.m_clsCurrent == ptrProxy->m_refList.end() )
            --(ptrProxy->m_refList.m_clsCurrent);
    }

public:
    Cache() {m_clsCurrent = m_clsList.end();}
    ~Cache()
    {
        if ( m_clsList.size() && m_clsCurrent != m_clsList.begin() )
        {
            // ERROR - Cache not empty
        }
    }

    typedef boost::shared_ptr<Proxy> Ptr;

    static Ptr Get()
    {
        static boost::thread_specific_ptr<Cache> clsCache;
        if ( clsCache.get() == NULL )
            clsCache.reset(new Cache());

        Proxy * ptrProxy;
        if ( clsCache->m_clsCurrent == clsCache->m_clsList.end() )
        {
            clsCache->m_clsList.push_front(Proxy(clsCache->m_clsList));
            ptrProxy = &(clsCache->m_clsList.front());
            ptrProxy->m_clsPosition = clsCache->m_clsList.begin();
        }
        else
        {
            ptrProxy = &(*(clsCache->m_clsCurrent));
            ptrProxy->m_clsPosition = clsCache->m_clsCurrent++;
        }
        return Ptr(ptrProxy, Release);
    }
};

编译错误在typename std::list<Proxy>::iterator m_clsPosition行上:

No type named 'iterator' in 'std::__1::list<ASW::Cache<std::__1::basic_string<char>>::Proxy, std::__1::allocator<ASW::Cache<std::__1::basic_string<char>>::Proxy>>'

(Cache的模板参数为std::basic_string<char>

我理解发生了什么 - 我在完全定义之前引用Proxy。但是为什么iterator需要Proxy的定义来编译?

数据结构的原因有两方面:1)回收对象而不是销毁它们; 2)通过将缓存对象中的迭代器保持在列表中的位置来加速回收。如果有人更好地了解如何实现这些(如果无法修复此错误),我很想知道它。

1 个答案:

答案 0 :(得分:2)

您的代码具有未定义的行为,因为您使用不完整的类型实例化std::listProxy尚未在其定义中定义)。 [res.on.functions]/2

  

...效果未定义...如果在实例化模板组件时将不完整类型用作模板参数,除非特别允许该组件。

尝试使用list的{​​{1}}实施,例如works with incomplete types