数组怎么用,全局数组就怎么用,只是他的作用域不一样才叫全局数组。。。
在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];

相关文章:

  • 2021-12-26
  • 2022-12-23
  • 2021-11-22
  • 2021-08-04
  • 2021-10-23
  • 2022-12-23
  • 2021-12-02
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-08-05
  • 2021-12-28
  • 2021-07-22
  • 2022-12-23
  • 2021-10-04
相关资源
相似解决方案