我已經定義了一個類「Progression」並將其保存爲「Progression.h」,然後我創建了另一個類「ArithProgression」,它繼承了Progression類並將其保存爲「ArithProgression.h」。無法在作業中將'ArithProgression *'轉換爲'Progression *'
文件:Progression.h
#ifndef PROGRESSION_H
#define PROGRESSION_H
#include <iostream>
using namespace std;
class Progression
{
public:
Progression()
{
cur=first=0;
}
Progression(long f)
{
cur=first = f;
}
void printProgression(int n)
{
cout<<firstValue();
for(int i=0;i<=n; i++)
{
cout<<' '<<nextValue();
}
}
virtual ~Progression() {}
protected:
long first;
long cur;
virtual long firstValue()
{
cur= first;
return cur;
}
virtual long nextValue()
{
return cur++;
}
};
#endif // PROGRESSION_H
FILE:ArithProgression.h
#ifndef ARITHPROGRESSION _H
#define ARITHPROGRESSION _H
#include "Progression.h"
class ArithProgression :public Progression
{
public:
ArithProgression(long i=1)
:Progression()
{
inc=i;
}
virtual ~ArithProgression() {}
protected:
long inc;
virtual long nextValue()
{
cur+=inc;
return cur;
}
private:
};
#endif // ARITHPROGRESSION _H
文件:main.cpp中
#include <iostream>
#include "Progression.h"
#include "ArithProgression.h"
using namespace std;
int main()
{
Progression* p;
p= new ArithProgression();
p->printProgression(10);
delete p;
}
我得到一個錯誤:「不能將' ArithProgression *'到'代碼塊中的'進度*'12.11
請幫助
這段代碼沒有這樣的錯誤。你確定這是你正在編譯的代碼嗎? –
恐怕沒有足夠的信息來猜測爲什麼你的IDE可能會編譯錯誤的東西。也許你在搜索路徑上有其他標題相同的名稱?您可以嘗試查看預處理源,以確切瞭解所包含的內容。 –
雅,當我檢查文件目錄有兩個ArithProgression.h文件。 現在感謝它的工作;) – shaurabh