2014-01-16 49 views
0

我已經定義了一個類「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

請幫助

+1

這段代碼沒有這樣的錯誤。你確定這是你正在編譯的代碼嗎? –

+0

恐怕沒有足夠的信息來猜測爲什麼你的IDE可能會編譯錯誤的東西。也許你在搜索路徑上有其他標題相同的名稱?您可以嘗試查看預處理源,以確切瞭解所包含的內容。 –

+0

雅,當我檢查文件目錄有兩個ArithProgression.h文件。 現在感謝它的工作;) – shaurabh

回答

2

您的代碼,因爲您發佈它,works just fine。由於ArithProgression確實是Progression的子類,所以上面的代碼不能觸發該錯誤。

+0

你爲每個班級做了不同的文件? – shaurabh

+0

@ user3005403,無關緊要,因爲如果您在包含文件時遇到問題,則會在'#include'行出現錯誤。沒有。 – Shoe

+0

雅,但它顯示此錯誤。你可以請嘗試通過製作不同的文件? – shaurabh

相關問題