gpt4 book ai didi

c++ - thread_local C++11,VS2015 中的错误 C2492

转载 作者:行者123 更新时间:2023-11-30 05:20:16 25 4
gpt4 key购买 nike

我有这样的课:

在 CustomAllocator.h 文件中:

namespace MemoryMgmt
{
class PoolMemory
{
....
}
}
class CustomAllocator
{
public:
void * operator new(size_t i_size);
void operator delete(void*, void*);
virtual ~CustomAllocator(){};


#pragma warning(suppress: 4251)
static thread_local MemoryMgmt::PoolMemory memory_manager_current;
};
inline void * CustomAllocator::operator new(size_t i_size)
{
return memory_manager_current.AllocateChars(i_size);
}
inline void CustomAllocator::operator delete(void * , void*)
{
//Should not be used
ASSERT(!"Placement delete should not be used for memory objects");
}

在 CustomAllocator.cpp 文件中:

#include <CustomAllocator.h>

thread_local MemoryMgmt::PoolMemory CustomAllocator::memory_manager_current;

我在许多不同的库中使用了 CustomAllocator 类。我将收到以下错误(许多错误与此相同):

error C2492: 'public: static MemoryMgmt::PoolMemory CustomAllocator::memory_manager_current': data with thread storage duration may not have dll interface (compiling source file D:\*******.cpp)

我使用的是 visual studio 2015,我猜这个版本完全支持它。

最佳答案

当您同时使用 __declspec(dllexport)__declspec(thread) 时会发生此错误。在您的情况下 memory_manager_current 是用作线程本地存储的 static 类成员。但是,我强烈怀疑该类可能已经声明了属性 __declspec(dllexport) (尽管在您帖子的代码中没有看到)。

您可以安全地将 memory_manager_current 移出类,并使其成为 class CustomAllocator 的实现文件中的全局变量。

希望这对您有所帮助。

关于c++ - thread_local C++11,VS2015 中的错误 C2492,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40744152/

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