从 char* 到 int* 的无效转换

invalid cast from char* to int*

我正在尝试使用堆栈上 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,因为最后一个应该更快。

您将需要重新诠释演员表。以下是正确对齐后的工作原理:

#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;"
}