考虑一个简单的类,它只包含内联的成员函数。例如:
template <typename T1, typename T2>
class Point2D {
public:
typedef Point2D<T1,T2> ThisType;
typedef T1 Tx;
typedef T2 Ty;
T1 x;
T2 y;
inline Point2D() : x(0), y(0) {}
inline Point2D(T1 nx, T2 ny) : x(nx), y(ny) {}
inline Point2D(const Point2D& b) : x(b.x), y(b.y) {}
inline Point2D& operator=(const Point2D& b) { x=b.x; y=b.y; return *this; }
inline ~Point2D() {}
};
typedef Point2D<int,int> Int2;
当我想导出到 DLL 的Int2
另一个类(例如 class MyClass
、 member )中使用类型对象时,我收到以下警告:Int2 point
警告 C4251:“MyClass::point”:“Point2D”类需要有 dll 接口才能供“MyClass”类的客户端使用
但是,如果我__declspec(dllexport)
按照警告提示输入“Point2D”的定义(这对我来说似乎很愚蠢,因为所有函数都是内联的,而且它是一个模板,请参阅 SO question),我在尝试使用时收到以下错误另一个项目中的 DLL:
错误 LNK2019:无法解析的外部符号“__declspec(dllimport) public: __thiscall lwin::Point2D::Point2D(int,int)” ...
请注意, 的定义Point2D
在所有项目可见的标题中给出。
我应该怎么办?跳过dllexport
并忽略警告?还是有一些巧妙的技巧可以避免这种编译器混淆?