开发者

C++ template class

    #ifndef ECORE_H
    #include "../database.h"
    #define ECORE_H
    Database *base_provider;  // ecore.h: error: expected initializer before ‘*’ token

    template <class S, class T>

            class ecore { // error: expected class-name befor开发者_开发技巧e ‘{’ token


    public:

        ~ecore(void){delete base_provider;};
        ecore(void){base_provider = new Database();};
    };
#endif // ECORE_H

<...>

why i've any get errors in this code?


You have to add a ; after the class declaration in database.h.


Perhaps database.h contains "unbalanced" brackets or a semi-colon is missing. A classic is missing the required trailing semi-colon on class declarations.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜