转自:http://wenku.baidu.com/view/bed5cbc49ec3d5bbfd0a74d7.html
代码:
Warning C4251
描述:
class“Class Name”需要有dll接口
原因和解决方法:
a) 如果该类(Class Name)的定义里面仅含有编译器内置的类型变量,如int、 float等等,或者成员函数仅使用了这些变量作为参数,那么只需要直接导出该类即可。
class _declspec(dllexport) YourClass
{
}
b) 如果该类(Class Name)的内部使用了其他类(Other Class),那么这个类(Other Class)最好也导出,不然,首先编译的时候会出现编译警告:(warning C4251: needs to have dll-interface )
class __declspec(dllexport) YourClass
{
YourAnatherClass m_data; // 这里会出现warning 4251. 如果YourAnatherClass 没有导出的话.
}
解决办法: 在YourAnatherClass定义的地方加上
class __declspec(dllexport) YourAnatherClass
{
}
当你的YourAnatherClass没有导出的时候,dll的使用方会出现链接错误。
c) 当类的内部使用了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(disable:4251)
若想不使用通过关闭警告的方式关闭警告,那么将类导出即可。
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;