結構體的淺拷貝與深拷貝

淺拷貝 首先看下面這段代碼: # include<assert.h> # include<string.h> #include <stdlib.h> typedef struct Node//定義了一個結構體 {     int size;     char *data; }S_Node; int main() {     S_Node node1;     node1.data = (char
相關文章
相關標籤/搜索