C编程const数组初始化器

前端之家收集整理的这篇文章主要介绍了C编程const数组初始化器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
GCC告诉我如下:Transformations.h:16:1:error:initializer元素不是常量

这是代码

const int X_ORIGIN = 1233086;             
const int Y_ORIGIN = -4728071;              
const int Z_ORIGIN = 4085704;
const int xyzOrigin[NUM_DIMENSIONS] = {X_ORIGIN,Y_ORIGIN,Z_ORIGIN};

解决方法

您不能在C的全局范围内执行此操作,仅在本地范围内,即在函数中:
#define NUM_DIMENSIONS 3

const int X_ORIGIN = 1233086;             
const int Y_ORIGIN = -4728071;              
const int Z_ORIGIN = 4085704;

const int xyzOrigin[NUM_DIMENSIONS] = {X_ORIGIN,Z_ORIGIN}; // FAIL

void foo(void)
{
    const int xyzOrigin[NUM_DIMENSIONS] = {X_ORIGIN,Z_ORIGIN}; // OK
}

或者,您可以将代码编译为C而不是C.

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

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