Is the data in nested std::arrays guaranteed to be contiguous?(嵌套的 std::arrays 中的数据是否保证是连续的?)
问题描述
std::array
中的数据是否保证连续?例如:
Is the data in std::array<std::array<T,N>, M>
guaranteed to be contiguous? For example:
#include <array>
#include <cassert>
int main()
{
enum {M=4, N=7};
typedef std::array<char,N> Row;
typedef std::array<Row, M> Matrix;
Matrix a;
a[1][0] = 42;
const char* data = a[0].data();
/* 8th element of 1D data array should be the same as
1st element of second row. */
assert(data[7] == 42);
}
断言是否保证成功?或者,换句话说,我可以依靠 Row
的末尾没有填充吗?
Is the assert guaranteed to succeed? Or, to put it another way, can I rely on there being no padding at the end of a Row
?
为了清楚起见,对于这个例子,我希望整个矩阵的数据是连续的.
Just to be clear, for this example, I want the data of the entire matrix to be contiguous.
推荐答案
不,在这种情况下不保证连续性.
No, contiguity is not guaranteed in this case.
std::array
保证是一个聚合,并以这样一种方式指定,即用于存储的底层数组必须是该类型的第一个数据成员.
std::array
is guaranteed to be an aggregate, and is specified in such a way that the underlying array used for storage must be the first data member of the type.
但是,没有要求sizeof(array
,也没有要求最后没有未命名的填充字节对象或 std::array
除了底层数组存储之外没有数据成员.(不过,包含额外数据成员的实现充其量是不寻常的.)
However, there is no requirement that sizeof(array<T, N>) == sizeof(T) * N
, nor is there any requirement that there are no unnamed padding bytes at the end of the object or that std::array
has no data members other than the underlying array storage. (Though, an implementation that included additional data members would be, at best, unusual.)
这篇关于嵌套的 std::arrays 中的数据是否保证是连续的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:嵌套的 std::arrays 中的数据是否保证是连续的?
基础教程推荐
- 从 std::cin 读取密码 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01