为什么这不能编译?

Why doesn't this compile

本文关键字:编译 不能 为什么      更新时间:2023-10-16
#include "base.h"
#include <Poco/SharedPtr.h>
#include <Poco/AutoPtr.h>
#include <vector>
using Poco::SharedPtr;
using Poco::AutoPtr;

namespace kroll
{
    class Value;
    class KObject;
    class KMethod;
    class KList;
    class StaticBoundObject;
    class StaticBoundMethod;
    class StaticBoundList;
    class GlobalObject;
    class ScopeMethodDelegate;
    class Bytes;
    class VoidPtr;
    class ValueReleasePolicy;
    class Logger;
    class ArgList;
    template <class C>
    class KAutoPtr : public AutoPtr<C>
    {
    public:
        KAutoPtr() : AutoPtr()
        {}
        KAutoPtr(C* ptr) : AutoPtr(ptr)
        {}
        KAutoPtr(C* ptr, bool shared) : AutoPtr(ptr, shared)
        {}
        KAutoPtr(const AutoPtr& ptr) : AutoPtr(ptr)
        {}
        /*KAutoPtr& operator = (const AutoPtr& ptr)
        {
            return assign(ptr);
        }*/
#ifdef DEBUG
        //This is used in debug builds as a workaround to release all memory
        //before VS debugger incorrectly dumps it as memory leak.
        KObject* release()
        {
            KObject* t = _ptr;
            _ptr = 0;
            return t;
        }
#endif
    };

得到以下错误:

kroll/libkroll/kroll.h:66: error: expected ',' or '...' before '&' token
kroll/libkroll/kroll.h:66: error: ISO C++ forbids declaration of 'AutoPtr' with no type
kroll/libkroll/kroll.h: In constructor 'kroll::KAutoPtr<C>::KAutoPtr()':
kroll/libkroll/kroll.h:57: error: class 'kroll::KAutoPtr<C>' does not have any field named 'AutoPtr'
kroll/libkroll/kroll.h: In constructor 'kroll::KAutoPtr<C>::KAutoPtr(C*)':
kroll/libkroll/kroll.h:60: error: class 'kroll::KAutoPtr<C>' does not have any field named 'AutoPtr'
kroll/libkroll/kroll.h: In constructor 'kroll::KAutoPtr<C>::KAutoPtr(C*, bool)':
kroll/libkroll/kroll.h:63: error: class 'kroll::KAutoPtr<C>' does not have any field named 'AutoPtr'
kroll/libkroll/kroll.h: In constructor 'kroll::KAutoPtr<C>::KAutoPtr(int)':
kroll/libkroll/kroll.h:66: error: class 'kroll::KAutoPtr<C>' does not have any field named 'AutoPtr'
kroll/libkroll/kroll.h:66: error: 'ptr' was not declared in this scope
kroll/libkroll/kroll.h: In member function 'kroll::KObject* kroll::KAutoPtr<C>::release()':
kroll/libkroll/kroll.h:79: error: '_ptr' was not declared in this scope

第66行是KAutoPtr(const AutoPtr&ptr): AutoPtr(ptr)

我使用命令行i686-apple-darwin10-gcc-4.2.1在MAC OS X 10.6.7机器上编译代码。

第66行应该是这样的:

KAutoPtr() : AutoPtr<C>()

对于其他构造函数调用也是如此。

您已经编写了KAutoPtr模板的主体,就好像KAutoPtr<C>是从AutoPtr派生的一样。但事实并非如此;没有AutoPtr型;AutoPtr是模板,KAutoPtr<C>来源于AutoPtr<C>

相关文章: