3

我在构建此代码时遇到链接器错误:

排除.h 文件

class IsExclude
{
    public:
        template<typename T>
        bool operator()(const T* par);
        virtual ~IsExclude() = 0;
};

IsExclude::~IsExclude() {}

class IsExcludeA : public IsExclude
{
    public:
        IsExcludeA(std::string toCompare) : toCompare_(toCompare)  {}
        template<typename T>
        bool operator()(const T* par)
        {
            return strcmp(par->Something, toCompare_.c_str() ) ? false : true ; 
        }
        ~IsExcludeA() {}
    private:
        std::string toCompare_;
};

在同一个文件中:

/*
 * loop over a container of function objects
 * if at least one of them return true the function
 * return true, otherwise false
 * The function was designed to evaluate a set of
 * exclusion rule put in "and" condition.
 */
template<typename T,typename P>
bool isExclude( const T& cont, const P* toCheck )
{
    typename T::const_iterator pos;
    typename T::const_iterator end(cont.end());
    bool ret(false);
    for (pos = cont.begin(); pos != end; ++pos)
    {
        if ( (*pos)->operator()(toCheck) == true )
        {
            ret = true;
            pos = end;
        }
    }    
    return ret;
}

我使用上一个调用的 cpp 文件如下所示:

std::vector<IsExclude* > exVector;

exVector.push_back( new IsExcludeA(std::string("A")) );
exVector.push_back( new IsExcludeA(std::string("B")) );

if (isExclude(exVector,asset) == false)
{
     // Blah
}

代码编译正常,但链接器出现错误:文件 bool IsExclude::operator()(const __type_0*) MyFile.o 中未定义的第一个引用符号

你有什么提示或建议吗?

PS我知道我需要清理向量以避免内存泄漏。我的编译器不能使用 boost::shared_ptr。叹!

4

1 回答 1

3

isExclude函数中,您编写:

if ( (*pos)->operator()(toCheck) == true )

此调用IsExclude::operator()已声明但未定义,因此链接器有充分的理由抱怨。在我看来,您希望一个多态行为,operator()但您陷入了“模板函数不能是虚拟”的陷阱。

在不知道您的要求的情况下很难为您提供更多帮助,但也许您应该重新考虑使用模板operator()并选择虚拟 operator().

于 2010-12-08T12:06:52.247 回答