gpt4 book ai didi

c++ - 关于抽象工厂、DLL 导出和智能指针的建议

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:01:23 25 4
gpt4 key购买 nike

这是对我之前的一个问题的跟进,我已经为我的项目提出了一个可能的解决方案,如果我有这个权利,我需要一些建议或指导。

基本上我的项目是一个可以在 Linux 和 Windows 上使用和编译的库,Linux 部分不是什么大问题,它是 Windows。

我的库主要由类组成,因此 95% 的 C++ 代码。为了提供更好的支持并避免名称混淆问题,我将使用接口(interface)和工厂方法来获取这些类的实例,而不是直接调用它。我还将仅在工厂函数上使用 extern "C"以避免名称混淆。

下面是问题:

  1. 我将在工厂函数上使用导出/导入宏,但我是否需要在我希望提供的所有类的头文件上添加导出/导入 (__declspec(dllexport/import))包含基类接口(interface)的实例?还是仅仅导出工厂函数就足够了?

  2. 我也在考虑使用智能指针功能进行自动释放,好主意还是让用户处理它?我正计划使用 autoptr 模板,它是标准库的一部分并且在两个平台上都可用,对吗?

  3. 谁能告诉我应该使用哪种调用约定?我知道它是特定于 Microsoft 的,所以我希望它不会干扰 Linux,所以我应该将它留空并让它成为默认值,我认为它是 _thiscall 或类似的东西。

  4. 我收到这段代码的错误,我不确定为什么,但这是由于外部“C”造成的:

错误是:

error: declaration of C function ‘std::ostream& operator<<(std::ostream&, const MemInfo&)’ conflicts with| previous declaration ‘std::ostream& operator<<(std::ostream&, const SpeedInfo&)’ here|

error: declaration of C function ‘std::ostream& operator<<(std::ostream&, const analyzed_result&)’ conflicts with previous declaration ‘std::ostream& operator<<(std::ostream&, const MemInfo&)’ here|

...这些错误消息对所有函数重复

代码如下:

//WINLIB is my macro for the dllimport/export

extern "C"{

//operator overloading for stream operation
WINLIB std::ostream& operator<<(std::ostream &st, const SpeedInfo &si);
WINLIB std::ostream& operator<<(std::ostream &st, const MemInfo &mi);
WINLIB std::ostream& operator<<(std::ostream &st, const analyzed_result&);
WINLIB std::ostream& operator<<(std::ostream &st, const ustring_set&);
WINLIB std::ostream& operator<<(std::ostream &st, const speed_map&);
WINLIB std::ostream& operator<<(std::ostream &st, const mem_map&);

WINLIB SpeedInfo operator+(SpeedInfo &si, SpeedInfo &si2);
WINLIB SpeedInfo& operator+=(SpeedInfo &si, SpeedInfo &si2);
WINLIB SpeedInfo operator-(SpeedInfo &si, SpeedInfo &si2);
WINLIB SpeedInfo& operator-=(SpeedInfo &si, SpeedInfo &si2);

WINLIB MemInfo operator+(MemInfo &mi, MemInfo &mi2);
WINLIB MemInfo& operator+=(MemInfo &mi, MemInfo &mi2);
WINLIB MemInfo operator-(MemInfo &mi, MemInfo &mi2);
WINLIB MemInfo& operator-=(MemInfo &mi, MemInfo &mi2);
}

最佳答案

  1. 导出工厂函数并在用户代码中包含类的 header 就足够了。
  2. 如果您不依赖它,让用户选择最适合该工作的工具。
  3. __标准调用
  4. extern "C"给你一个c风格的声明范围——因此你不能在那里重载。见here .由于 win32 dll 也是 C 风格的,您不能直接导出重载函数(想想 GetProcAddress())。

关于c++ - 关于抽象工厂、DLL 导出和智能指针的建议,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1448925/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com