1

我有一个typedef struct命名的“项目”,其中包含 2 个char[254](产品名称和公司名称)和 9 个int变量。(价格、金额等)。

我从中创建了一个指针,typedef struct一个数组(1D)和一个二维数组。

我曾经scanf将数据存储到指针的各个变量中(到目前为止没问题)。

现在,我想将指针变量的数据“复制并存储”到数组(一维)中,然后将一维数组的数据“复制并存储”到二维数组中。

对于指向一维数组的指针,这就是我所做的:

void pointer_conversion(item *a, item curr[10000], int total)
{
memcpy(&curr[total], a, sizeof(item*));
} 
// Tried doing: memcpy(&curr[total],a,sizeof(item*) * 100); 
// Why 100?= just to be safe.  But still not working.

现在,此函数char[254]将指针的第一个复制并存储a到一维数组curr中,但其余的变量typedef structNULL

有什么建议吗?

(在 Windows 上使用 VS2012)

typedef struct nodebase{
    char productname[254];
    char companyname[254];
    int price;
    int stocks;
//....
    struct nodebase *next; //Use the struct as linked-list
}item;
4

1 回答 1

1

考虑代码片段的作用,

  • 函数返回 void/nothing

    void
    
  • 函数名是pointer_conversion,接受三个参数

  • 参数 a 是指向项目的指针,(item*)
  • 参数 curr 是一个项目数组,(item[10000])
  • 参数 total 是一个 int

    pointer_conversion(item *a, item curr[10000], int total)
    {
    
  • memcpy 接受三个参数,目标、源和要复制的字节数

  • sizeof(item*) 有多大?它和指针一样大。
  • 你要复制多少字节?sizeof(item) 有多大?

    memcpy(&curr[total], a, sizeof(item*));
    }
    
  • 但您可能不想复制 item* 项目的下一个元素

于 2013-10-04T04:54:02.067 回答