- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
到目前为止,我为这个问题得到的答案有两种完全相反的答案:“它是安全的”和“它是未定义的行为”。我决定重写整个问题,以获得更好的澄清答案,对我和任何可能通过谷歌到达这里的人来说。
另外,我删除了 C
标记,现在这个问题是 C++ 特定的
我正在创建一个 8 字节对齐的内存堆,将在我的虚拟机中使用。我能想到的最明显的方法是分配一个 std::uint64_t
数组。
std::unique_ptr<std::uint64_t[]> block(new std::uint64_t[100]);
让我们假设 sizeof(float) == 4
和 sizeof(double) == 8
。我想在 block
中存储一个 float 和一个 double 并打印该值。
float* pf = reinterpret_cast<float*>(&block[0]);
double* pd = reinterpret_cast<double*>(&block[1]);
*pf = 1.1;
*pd = 2.2;
std::cout << *pf << std::endl;
std::cout << *pd << std::endl;
我还想存储一个 C 字符串说“你好”。
char* pc = reinterpret_cast<char*>(&block[2]);
std::strcpy(pc, "hello\n");
std::cout << pc;
现在我想存储“Hello, world!”超过 8 个字节,但我仍然可以使用 2 个连续的单元格。
char* pc2 = reinterpret_cast<char*>(&block[3]);
std::strcpy(pc2, "Hello, world\n");
std::cout << pc2;
对于整数,我不需要 reinterpret_cast
。
block[5] = 1;
std::cout << block[5] << std::endl;
我将 block
分配为 std::uint64_t
的数组,其唯一目的是为了内存对齐。我也不希望任何大于 8 字节的内容存储在其中。如果保证起始地址为 8 字节对齐,则 block 的类型可以是任何类型。
有些人已经回答说我正在做的是完全安全的,但有些人说我肯定是在调用未定义的行为。
我是否编写了正确的代码来实现我的意图?如果不是,什么是合适的方式?
最佳答案
要分配任意(无类型)内存块,全局分配函数(§3.7.4/2);
void* operator new(std::size_t);
void* operator new[](std::size_t);
可用于执行此操作 (§3.7.4.1/2)。
§3.7.4.1/2
The allocation function attempts to allocate the requested amount of storage. If it is successful, it shall return the address of the start of a block of storage whose length in bytes shall be at least as large as the requested size. There are no constraints on the contents of the allocated storage on return from the allocation function. The order, contiguity, and initial value of storage allocated by successive calls to an allocation function are unspecified. The pointer returned shall be suitably aligned so that it can be converted to a pointer of any complete object type with a fundamental alignment requirement (3.11) and then used to access the object or array in the storage allocated (until the storage is explicitly deallocated by a call to a corresponding deallocation function).
而 3.11 对基本对齐要求有这样的说法;
§3.11/2
A fundamental alignment is represented by an alignment less than or equal to the greatest alignment supported by the implementation in all contexts, which is equal to
alignof(std::max_align_t)
.
只是为了确保分配函数的行为必须像这样;
§3.7.4/3
Any allocation and/or deallocation functions defined in a C++ program, including the default versions in the library, shall conform to the semantics specified in 3.7.4.1 and 3.7.4.2.
引自 C++ WD n4527 .
假设 8 字节对齐小于平台的基本对齐(看起来确实如此,但这可以在目标平台上使用 static_assert(alignof(std::max_align_t) >= 8)
) - 您可以使用全局 ::operator new
来分配所需的内存。分配后,可以根据您的大小和对齐要求对内存进行分段和使用。
这里的另一种选择是 std::aligned_storage
它可以让你的内存按照任何要求对齐。
typename std::aligned_storage<sizeof(T), alignof(T)>::type buffer[100];
根据问题,我在这里假设 T
的大小和对齐方式均为 8。
最终内存块的外观示例(包括基本 RAII);
struct DataBlock {
const std::size_t element_count;
static constexpr std::size_t element_size = 8;
void * data = nullptr;
explicit DataBlock(size_t elements) : element_count(elements)
{
data = ::operator new(elements * element_size);
}
~DataBlock()
{
::operator delete(data);
}
DataBlock(DataBlock&) = delete; // no copy
DataBlock& operator=(DataBlock&) = delete; // no assign
// probably shouldn't move either
DataBlock(DataBlock&&) = delete;
DataBlock& operator=(DataBlock&&) = delete;
template <class T>
T* get_location(std::size_t index)
{
// https://stackoverflow.com/a/6449951/3747990
// C++ WD n4527 3.9.2/4
void* t = reinterpret_cast<void*>(reinterpret_cast<unsigned char*>(data) + index*element_size);
// 5.2.9/13
return static_cast<T*>(t);
// C++ WD n4527 5.2.10/7 would allow this to be condensed
//T* t = reinterpret_cast<T*>(reinterpret_cast<unsigned char*>(data) + index*element_size);
//return t;
}
};
// ....
DataBlock block(100);
我已经用合适的模板 construct
和 get
函数等构建了 DataBlock
的更详细示例,live demo here和 here with further error checking etc. .
看起来原始代码中确实存在一些别名问题(严格来说);您分配一种类型的内存并将其转换为另一种类型。
它可能在您的目标平台上按您期望的那样工作,但您不能依赖它。我见过的最实用的评论是:
您拥有的代码可能会起作用。我认为最好使用适当的全局分配函数,并确保在分配和使用所需内存时没有未定义的行为。
别名仍然适用;一旦分配了内存 - 别名适用于它的使用方式。一旦您分配了任意内存块(如上使用全局分配函数)并且对象的生命周期开始(第 3.8/1 节)- 别名规则适用。
std::allocator
呢?虽然 std::allocator
用于同构数据容器,而您正在寻找的是类似于异构分配,您的标准库中的实现(给定 Allocator concept)提供了一些关于原始内存分配和所需对象的相应构造的指导。
关于c++ - 在 C++ 中分配和使用无类型内存块的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31436620/
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!