E0144 "const char *" 型別的值不能用於初始化 "char *" 型別的實體

一隻大鴿子發表於2018-07-29

程式碼來自c++primer plus 6 第14章c++中的程式碼重用 ,第552、553頁。

 

按照書中的原始碼,在visual studio 2017 中編譯出現如下錯誤;

E0144

嚴重性	程式碼	說明	檔案	行	禁止顯示狀態
錯誤(活動)	E0144	"const char *" 型別的值不能用於初始化 "char *" 型別的實體	c:\Users\dell\source\repos\worker0\worker0\worker0.cpp	47	

出現錯誤的位置:

char * Singer::pv[] = {"other", "alto", "contralto",
            "soprano", "bass", "baritone", "tenor"};

 Singer::pv 出現的地方:

class Singer : public Worker
{
protected:
    enum {other, alto, contralto, soprano,
                    bass, baritone, tenor};
    enum {Vtypes = 7};
private:
    static char *pv[Vtypes];    // string equivs of voice types
    int voice;
......

我的解決辦法是:強制型別轉換。

char * Singer::pv[] = {(char*)"other", (char*)"alto", (char*)"contralto",
            (char*)"soprano", (char*)"bass", (char*)"baritone", (char*)"tenor"};

 

相關文章