- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个类旨在以几种不同格式之一进行数据导入/导出。每种格式都应具有完全相同的接口(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/
我有一个特别的问题想要解决,我不确定是否可行,因为我找不到任何信息或正在完成的示例。基本上,我有: class ParentObject {}; class DerivedObject : publi
在我们的项目中,我们配置了虚 URL,以便用户可以在地址栏中输入虚 URL,这会将他们重定向到原始 URL。 例如: 如果用户输入'http://www.abc.com/partner ',它会将它们
我是一名优秀的程序员,十分优秀!