零长度数组

做~自己de王妃 提交于 2020-02-29 19:40:08

在结构体定义中遇到了长度为 0 的数组,它的作用是什么呢?写下面的代码进行测试。

代码

#include <iostream>
using namespace std;

struct Info
{
	int num;
	char zero_array[0];
};

int main()
{
	struct Info info;
	cout << "Struct Start Address:" << &info << endl;
	cout << "Struct End Address:" << &info.zero_array << endl;
	return 0;
}

结果为

Struct Start Address:0x7fff87553bf0
Struct End Address:0x7fff87553bf4

End Address 刚好比 Start Address 多出一个 int 的长度。

它可以指示结构体结束时的地址。

作用

我们可以动态地在 Info 结构体中扩充内容

int main()
{
	struct Info info;
	cout << "Struct Start Address:" << &info << endl;
	cout << "Struct End Address:" << &info.zero_array << endl;
	
	info.zero_array[0] = 't';
	info.zero_array[1] = 'i';
	info.zero_array[2] = 't';
	info.zero_array[3] = 'u';
	info.zero_array[4] = 's';

	cout << "content: " << info.zero_array << endl; 
	
	return 0;
}

打印

Struct Start Address:0x7fff72d5db70
Struct End Address:0x7fff72d5db74
content: titus
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!