结构的初始化

时间:2012-03-07 00:51:00

标签: c struct initialization

是否可以在main之前初始化c中的结构的对象表?我有这个结构:

typedef struct customer{
    int x, y;// coordinates
    int quantity;

} customer; 

customer *table1;

int main(){

    table1 = (customer *)malloc(n * sizeof(customer));

    table1[0].quantity = 0;    table1[0].x = 0; table1[0].y = 0;  //afetiria
    table1[1].quantity = 1000; table1[1].x = 0; table1[1].y = 12; // 1st 
    table1[2].quantity = 1500; table1[2].x = 6; table1[2].y = 5;  // 2nd
    table1[3].quantity = 800;  table1[3].x = 7; table1[3].y = 15; // 3rd

    distance(1,2) //calculate the distance bet 1st and 2d object 

}   

因为我想制作一个距离函数,我注意到如果我在main内初始化struct,它就不起作用。关于如何全局初始化table1

的任何想法

2 个答案:

答案 0 :(得分:3)

以下是数组全局初始化的示例:

customer table1[] = { { 0, 0, 0 }, 
                      { 0, 12, 1000 },
                      { 6, 5, 1500 },
                      { 7, 15, 800 } };

但是,您所显示的代码应该非常相同。

答案 1 :(得分:0)

你可以在{main}之外移动malloc电话,但这应该没有区别。只要table1在main之外声明(在您的示例中),它应该对整个翻译单元可见。