c++ - 如何使用外部值创建表(数组)?

标签 c++ c extern array-initialization

我想创建一个包含数据指针、数据大小和数据版本的静态(文件范围)表。问题是数据在外部文件中,但常量在外部文件中。

示例:

文件1.c

    const unsigned char data1[] =
    {
    0x65, 0xF0, 0xA8, 0x5F, 0x5F,
    0x5F, 0x5F, 0x31, 0x32, 0x2E,
    0x31, 0xF1, 0x63, 0x4D, 0x43, 
    0x52, 0x45, 0x41, 0x54, 0x45,
    0x44, 0x20, 0x42, 0x59, 0x3A,
    0x20, 0x69, 0x73, 0x70, 0x56, 
// ...
    };
    const unsigned int data1_size =
        sizeof(data1) / sizeof(data1[0]);
    const unsigned int data1_version = 1;

文件2.c

    const unsigned char data2[] =
    {
    0x20, 0x44, 0x61, 0x74, 0x61,
    0x20, 0x52, 0x6F, 0x77, 0x20,
    0x3D, 0x20, 0x34, 0x38, 0x12, 
//...
    };
    const unsigned int data2_size =
        sizeof(data2) / sizeof(data2[0]);
    const unsigned int data2_version = 1;

ma​​in.c

struct Data_Info
{
  unsigned char * data_ptr;
  unsigned int    data_size;
  unsigned int    data_version;
};

extern const unsigned char data1[];
extern const unsigned int  data1_size;
extern const unsigned int  data1_version;

extern const unsigned char data2[];
extern const unsigned int  data2_size;
extern const unsigned int  data2_version;

static struct Data_Info  Data_Info_Table[] =
{
  // How to set this up??
  // The compiler wants constant expressions here,
  //    and the extern is not considered a constant expression
  // This is what I tried:
  { data1, data1_size, data1_version},
  { data2, data2_size, data2_version},
};

int main(void)
{
  return 0;
} 

我正在使用 Green Hills 编译器 4.2.3。确切的错误信息:

error #28, expression must have a constant value.

请参阅我之前的帖子:
C: External const ints in a array of const struct

注意:包含 C++ 标记,因为这也适用于 C++

最佳答案

你试过了吗? (其中 X 为 0 或 1。)

struct Data_Info    
{    
  unsigned char const * data_ptr;    
  unsigned int    data_size;    
  unsigned int    data_version;    
};    

文件X.h

extern const struct Data_Info data_infoX;

文件X.c

const struct Data_Info data_infoX = { dataX, dataX_size, dataX_version };

主.c

const struct Data_Info const * Data_Info_Table[] = 
{ 
  &data_info1,
  &data_info2
}; 

关于c++ - 如何使用外部值创建表(数组)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3339547/

相关文章:

c++ - C++读取超大文件的方法

使用 Wifly Shield 和 arduino 创建客户端,并且 WiFly.begin() 失败

c - C 中的函数指针数组

c - 如何使用 valgrind 查看 c 中函数的堆和堆栈使用情况?

c++ - 使用 extern 的前向声明(在 C/C++ 的上下文中)

c++ - 程序员的错误或 gcc-5.1.0 的错误?

c++ - 如何访问 mex 文件中 Matlab 结构数组中的数据

c - 源文件中的static/extern有什么用?

c++ - 命名空间类的操作重载

c - 对 extern 函数的 undefined reference - C