gpt4 book ai didi

c++ - 当转发声明类时,我也应该在那里使用属性定义吗?

转载 作者:太空宇宙 更新时间:2023-11-04 13:00:02 24 4
gpt4 key购买 nike

当我向前声明类时,我有一个像这样的定义:

#define API __declspec(dllexport)

我应该用它还是不用它来声明函数?我知道当我完全声明类时(例如,带有主体和东西)我需要这样做,但我想知道我是否也应该在前向声明中使用它。

最佳答案

一般来说,我的回答是“否”。

__declspec(dllexport)__declspec(dllimport) 属性只需要知道“我们需要导出这个”和“我们需要导入这个”这一事实。在只有前向声明就足够的地方,这个事实并不重要,因为这意味着在这个地方,只知道存在这样的类就足够了。

最常见的用例之一是这样的:

// --- Library ---
// Library.h
class LIBRARY_API LibraryClass
{
void SomeMethod();
}

// Library.cpp
#include "Library.h" // we include the declaration together with __declspec(dllimport)
void LibraryClass::SomeMethod() { /*do something*/ }


// --- Some module which uses Library ---
// Some class .h file
class LibraryClass; // forward declaration
class SomeClass
{
std::unique_ptr<LibraryClass> mp_lib_class;
// forward decl of LibraryClass is enough
// - compiler does not need to know anything about this class

// ...
}

// Some class .cpp file
#include <Library/Library.h>
// here we include LibraryClass declaration with __declspec(dllimport)

//...
SomeClass::SomeClass()
: mp_lib_class(std::make_unique<LibraryClass>())
// here we need to actually call LibraryClass code
// - and we know that it's imported because of #include
{}

如果您在实际定义的库中向前声明 LibraryClass - 放置 __declspec(dllexport) 将不会改变任何东西,因为无论这些如何导出类前向声明。

关于c++ - 当转发声明类时,我也应该在那里使用属性定义吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44591568/

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