我有一个奇怪的问题,无法弄清楚这是什么。
我有一个子类,这样的.h文件是这样创建的:
#pragma once
#include "stdafx.h"
#include "Osoba.h"
#include "Lekarz.h"
ref class Pacjent :
public Osoba
{
public:
Pacjent(String ^ imie, String ^ nazwisko, String ^ telefon, String ^ pesel) :
Osoba(imie, nazwisko, telefon) {
}
bool appointVisit(DateTime^ date, Lekarz^ lekarz);
protected:
String ^ pesel;
private:
int getGender();
};
当没有appointmentVisit方法时,它完全按预期工作。添加后我开始收到错误LNK2022说重复类型的元数据。 它在不能继承的类中工作得很好。在继承的类中,我无法使其正常工作。我做错了什么人?