'needs to have dll-interface' warning

class 里面有std::vector<std::string> str的时候提示C4251 warning: needs to have dll-interface...

http://www.programmersheaven.com/mb/CandCPP/310449/310449/needs-to-have-dll-interface-warning/

templates can't be exported -- but I think you can safely ignore the error if the application program will not have access to the template object.

似乎STL无法被export到dll解决方法有2个:

1. #pragma warning(disable, 4251)

2.定义之前添加

template class UX_EXPORTS std::allocator<std::string>;
template class UX_EXPORTS std::vector<std::string, std::allocator<std::string>>;

然后定义std::vector<std::string> files;就没有warning了,但是list貌似不起作用。

另据网上找到的解决方案:

http://wxohyer.wordpress.com/2010/04/16/warning-c4251-needs-to-have-dll-interface%E8%A7%A3%E5%86%B3%E5%8A%9E%E6%B3%95/

1:情况一
如果类的定义里面仅含有 编译器内置的类型变量,
int, float 等等. 或者成员函数仅使用了这些变量作为参数, 那么很简单.
直接
class __declspec(dllexport) YourClass
{
}
就行了.

2:情况二
如果类内部使用了别的类, 那么别的类最好也导出, 不然, 首先编译的时候会出现编译警告:
warning C4251: needs to have dll
-interface
意思是,你使用另外的一些类型
/接口, 但是这些类型或接口没有导出. 当你的client使用这些类型/接口的时候, 会出错!
class __declspec(dllexport) YourClass

{
YourAnatherClass m_data;
// 这里会 出现 warning 4251. 如果YourAnatherClass 没有导出的话.
}
解决办法就是: 在YourAnatherClass定义的地方加上
class __declspec(dllexport) YourAnatherClass
{
}
如上, 当你的YourAnatherClass没有导出的时候, dll的使用方会出现链接错误

3:情况三
当类的内部使用了STL模板的时候, 也会出现C4251警告, 情况会有所不同
class __declspec(dllexport) YourClass
{
vector
<int> m_data; // 这里会 出现 warning 4251. 因为vector<int>类型没有被导出
}
上面的使用模板(无论是stl模板,还是自定义模板)的代码,编译dll时会出现C4251警告, 但是dll的使用方, 却不会出现链接错误
!!!
这个因为, dll的使用方那里也有一套模板的定义, 当他们使用那个vector
<int>的时候, 虽没有导出, 但是用户自己也有一套STL模板(或者是自定义的模板),用户会利用自己的模板实例化这个dll中没有导出的东西!

所以, 对于因为使用STL(或模板)出现的c4251警告, 关闭之即可
#pragma warning(push)
#pragma warning(disable:4251)
//your declarations that cause 4251
#pragma warning(pop)

若想不使用通过关闭警告的方式关闭警告, 那么就这样
1)对于用户自定义的模板
template
class DLLImportExportMacro SomeTemplate<int>;
SomeTemplate
<int> y;
2)对于STL的模板
template
class DLLImportExportMacro std::allocator<int>
template
class DLLImportExportMacro std::vector<int, std::allocator<int> >;
vector
<int> m_data;

转载于:https://www.cnblogs.com/songzi/archive/2011/08/01/2123529.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值