博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++ 定义全局数组
阅读量:7062 次
发布时间:2019-06-28

本文共 720 字,大约阅读时间需要 2 分钟。

数组怎么用,全局数组就怎么用,只是他的作用域不一样才叫全局数组。。。

在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要使用这个数组,只需在其开头写上下面一句即可。

const Vector3f colorTable[10];

转载于:https://www.cnblogs.com/VVingerfly/p/5965514.html

你可能感兴趣的文章