我正在尝试在堆栈上使用char
的缓冲区作为其他类型数据的存储。
作为测试,我从最基本的int
开始,但是对整数指针的字符转换指针不能编译。
char buf[256];
int* l = static_cast<int*>(buf);
*l = 20;
我得到的错误是
error: invalid static_cast from type ‘char*’ to type ‘int*’
作为这些原始数据我期待这个工作:你知道这个具体案例背后的机制是什么吗?
我使用reinterpet_cast
进行了整理,但我想使用static_cast
,因为这最后应该更快。
答案 0 :(得分:2)
您需要reinterpret_cast。以下是正确对齐的方法:
#include <memory>
std::aligned_storage<20 * sizeof(int), alignof(int)>::type storage;
int * p = reinterpret_cast<int *>(&storage);
for (std::size_t i = 0; i != 20; ++i)
{
::new (p + i) int(i); // or "p[i] = i;"
}