const数组const {}

前端之家收集整理的这篇文章主要介绍了const数组const {}前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
所以你可以这样做:
void foo(const int * const pIntArray,const unsigned int size);

这表示指针是只读的,它指向的整数是只读的.

你可以像这样访问函数内部:

blah = pIntArray[0]

您还可以执行以下声明:

void foo(const int intArray[],const unsigned int size);

它几乎是一样的,但你可以这样做:

intArray = &intArray[1];

我可以写:

void foo(const int const intArray[],const unsigned int size);

那是对的吗?

解决方法

不,你的最后一个变种是不正确的.您尝试做的是通过以下新语法在C99中实现的
void foo(const int intArray[const],const unsigned int size);

这相当于

void foo(const int *const intArray,const unsigned int size);

那个[const]语法特定于C99.它在C89 / 90中无效.

请记住,有些人认为函数参数上的顶级cv限定符“无用”,因为它们限定了实际参数的副本.我认为它们毫无用处,但我个人认为在现实生活中使用它们并没有太多理由.

原文链接:https://www.f2er.com/c/120225.html

猜你在找的C&C++相关文章