在C中导出没有基类的父类

给定Foo和Bar的类,其中Bar来自Foo,如何导出Bar而不必导出Foo?

foo.h中

class Foo
{
    public:
        Foo();
        virtual bool Read(...);
        virtual bool Write(...);
        ~Foo();
};

Bar.h

#ifdef BUILD_DLL
#    include "Foo.h"
#    define EXTERNAL __declspec(dllexport)
#else
#    define EXTERNAL __declspec(dllimport)
#endif 

class EXTERNAL Bar: public Foo
{
    public:
        Bar();
        bool Read(...);
        bool Write(...);
        ~Bar();
};

编辑

这是Visual C 2010给我的警告:

warning C4275: non dll-interface class ‘Foo’ used as base for dll-interface class ‘Bar’

编辑#2

以下是我为解决问题所做的工作.我让Foo和Bar分开了DLL.客户端应用程序链接到Bar.dll和Bar.dll链接到Foo.dll.这适用于我想要实现的目标……

解决方法:

这不行吗?这应该.仅仅因为你没有明确地导出类并不意味着逻辑不在二进制文件中.导入该类的任何内容都不会显示这些符号.

你的解决方案应该这样做.你得到链接错误或什么?

编辑:我刚看到你只在一个案例中包含了Foo的标题.你不需要这样做:

#ifdef BUILD_DLL
#    define EXTERNAL __declspec(dllexport)
#else
#    define EXTERNAL __declspec(dllimport)
#endif 

#include "Foo.h"

class EXTERNAL Bar: public Foo
{
    public:
        Bar();
        bool Read(...);
        bool Write(...);
        ~Bar();
};

这样你就不能在不同的模块中使用Foo,因为它不会被导出,但你可以使用并声明Bar.

上一篇:将C DLL后期绑定到C#-函数始终返回true


下一篇:c# – 导出非托管函数指针时访问冲突