gpt4 book ai didi

c++: sizeof(int[3]) 中的 int[3] 是什么

转载 作者:太空宇宙 更新时间:2023-11-03 10:31:49 27 4
gpt4 key购买 nike

这是我的例子:

#include "stdafx.h"
#include <iostream>
using namespace std;


int _tmain(int argc, _TCHAR* argv[])
{
int ar[][3] = {1, 2, 3, 4, 5, 6, 7};
//cout << int[3]<<endl; // error C2062: type 'int' unexpected.
cout << "sizeof(ar) / sizeof(int[3]) "<< sizeof(ar) / sizeof(int[3]) << endl;;

system("pause");

return 0;
}

虽然没有给出解释,但它来自一本书。这里的 int[3] 是什么以及为什么它在这种情况下仅作为 sizeof 的参数起作用?

最佳答案

int[3] 是表示三个整数数组的类型声明。

您的注释代码会出错,因为您不能将类型用作变量。

关于c++: sizeof(int[3]) 中的 int[3] 是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14343481/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com