gpt4 book ai didi

找不到 C++ 虚函数

转载 作者:行者123 更新时间:2023-11-30 04:37:58 25 4
gpt4 key购买 nike

我有一个类旨在以几种不同格式之一进行数据导入/导出。每种格式都应具有完全相同的接口(interface),因此我将其实现为具有一堆虚拟方法的基类和针对每种特定格式的派生类:

#ifndef _IMPORTEXPORT_H_
#define _IMPORTEXPORT_H_

#include "stdio.h"

enum EXPORT_TYPE {
EXPORT_INI = 1,
};

class exportfile {
public:
virtual ~exportfile();

static exportfile * openExportFile(const char * file, EXPORT_TYPE type);

virtual void startSection(int id) = 0;
virtual void endSection() = 0;

protected:
exportfile(const char * file);
FILE * hFile;

};

class iniexportfile : public exportfile {
public:
iniexportfile(const char * file) : exportfile(file) { }

void startSection(int id);
void endSection();
private:
bool inSection;

};

#endif

这是基类 (exportfile) 和派生类之一 (iniexportfile)。

这些方法的实现是这样的:

#include "importexport.h"

#include <exception>
#include <assert.h>

exportfile * openExportFile(const char * file, EXPORT_TYPE type) {
switch(type) {
case EXPORT_INI:
return new iniexportfile(file);
default:
return NULL;
}
}

exportfile::exportfile(const char * file) {

this->hFile = fopen(file, "w");

if(this->hFile == 0) {
throw new std::exception("Unable to open export file");
}
}

exportfile::~exportfile() {
assert(this->hFile != 0);

this->endSection();

fclose(this->hFile);
this->hFile = 0;
}

void iniexportfile::startSection(int id) {
assert(this->hFile != 0);

fprintf(this->hFile, "[%d]\r\n", id);

this->inSection = true;
}

void iniexportfile::endSection() {
this->inSection = false;
}

(注意,类(class)显然没有完成。)

最后,我有一个测试方法:

#include "importexport.h"

#include <exception>

using namespace std;

void runImportExportTest() {
iniexportfile file("test.ini");

file.startSection(1);

file.endSection();
}

无论如何,这一切都可以正常编译,但是当它被链接时,链接器会抛出这个错误:

error LNK2001: unresolved external symbol "public: virtual void __thiscall exportfile::endSection(void)" (?endSection@exportfile@@UAEXXZ)   importexport.obj

当它被标记为纯虚拟时,为什么要寻找 exportfile::endSection()?我是不是以某种方式没有让它成为纯虚拟的?或者,我是不是被 C# 宠坏了,完全搞砸了这些虚函数?

顺便说一句,这是 Visual Studio 2008。我想我应该在某个地方提到它。

最佳答案

调用此 dtor 时:

exportfile::~exportfile() {
assert(this->hFile != 0);

this->endSection();

fclose(this->hFile);
this->hFile = 0;
}

编译器已“解开”vtable,因此它将解析为 exportfile::endSection() 函数 - 它不会调用派生版本。您需要设计一种不同的清理方法。

参见 "Never call virtual functions during construction or destruction" .

关于找不到 C++ 虚函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3498096/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com