首页 > 代码库 > C++ 定义全局数组

C++ 定义全局数组

数组怎么用,全局数组就怎么用,只是他的作用域不一样才叫全局数组。。。
在A.h 或 A.cpp中定义char buf[10];
如果在B.cpp要用,就在其开头中写成 extern char buf[10];

例如,在HelpFun.h中定义 colorTable 数组:

const Vector3f colorTable[10] = {    Vector3f(0.9, 0.2, 0.2),   //  1: Red    Vector3f(0.2, 0.2, 0.9),   //  2: Blue    Vector3f(0.9, 0.9, 0.5),   //  3: Yellow    Vector3f(0.9, 0.5, 0.2),   //  4: Orange    Vector3f(0.7, 0.2, 0.9),   //  5: Purple    Vector3f(0.3, 0.8, 0.8),   //  6: Cyan    Vector3f(0.5, 0.3, 0.2),   //  7: Brown    Vector3f(0.9, 0.2, 0.6),   //  8: Pink    Vector3f(0.6, 0.6, 0.7),   //  9: Gray    Vector3f(0.9, 0.6, 0.5)    // 10:LightSalmon};

 

在 B.cpp要使用这个数组,只需在其开头写上下面一句即可。

extern const Vector3f colorTable[10];

C++ 定义全局数组