代码编译在Linux上失败,在Windows上成功:原因/修复?

时间:2016-05-14 03:59:13

标签: c++ linux windows compilation

我有一些c ++代码可以在Visual Studio 2013中正常编译,但不能使用g ++(没有IDE)在linux中编译。

造成差异的原因是什么?我如何在linux上编译代码?是因为它们是不同的编译器吗?我需要特定的编译器设置吗?

代码:

#include <iostream>

typedef class IApp;
typedef class Component;

class Component
{
public:

protected:
    IApp* app;

    template<typename T>
    void registerEvent()
    {
        app->logEvent();
    }
};

class IApp : protected Component
{
public:
    static IApp NULL_APP;

    void logEvent()
    {
        printf("Event Logged\n");
    }

protected:
    virtual void foo() = 0;
};


int main(int argc, char** argv)
{
    printf("Alive\n");
    system("pause");
    return 0;
}

在Windows上我没有编译器错误。在linux上,我得到以下编译器错误:

g++ - o res main.cpp - std = c++11
main.cpp:3 : 15 : warning : ‘typedef’ was ignored in this declaration[enabled by default]
typedef class IApp;
^
main.cpp:4 : 15 : warning : ‘typedef’ was ignored in this declaration[enabled by default]
typedef class Component;
^
main.cpp: In member function ‘void Component::registerEvent()’ :
main.cpp : 16 : 6 : error : invalid use of incomplete type ‘class IApp’
app->logEvent();
^
main.cpp:3 : 15 : error : forward declaration of ‘class IApp’
typedef class IApp;
^
main.cpp: At global scope :
main.cpp : 23 : 14 : error : cannot declare variable ‘IApp::NULL_APP’ to be of abstract type ‘IApp’
static IApp NULL_APP;
^
main.cpp:20 : 7 : note : because the following virtual functions are pure within ‘IApp’ :
class IApp : protected Component
    ^
    main.cpp : 31 : 15 : note : virtual void IApp::foo()
    virtual void foo() = 0;
^
make: ***[all] Error 1

2 个答案:

答案 0 :(得分:3)

您只需删除typedef

即可
typedef class IApp;

然后,此模板方法应在IApp下面的线外定义:

template<typename T>
void registerEvent()
{
    app->logEvent();
}

否则,它没有看到需要取消引用的IApp声明。

最后,这没有意义:

virtual void foo() = 0;

因为同一个类具有自己类类型的static成员,所以需要实例化它。但是你已经用纯虚函数阻止了它。

GCC没有编译此代码。

答案 1 :(得分:1)

在前向类声明之前省略typedef关键字,它们不是必需的。只是上课MyClass;足以进行前瞻性声明。另一个问题是foo()是纯虚拟的 - 如果要实例化类,则需要实现它。我很惊讶微软编译器没有抱怨,但后来就是微软。