(一)
struct my_struct *[];
是說一個陣列中的每個元素都是pointer 且每個pointer都是指向一個
my_struct的struct
---
| | ==> my_struct
---
| | ==> my_struct
---
| | ==> my_struct
---
最左邊那個框框是array
===>符號是 pointer
my_struct 是 struct
(二)
那假如我用
struct my_struct[] 呢
是說我每個陣列中的元素 存的都是 my_struct 這個struct
那這兩種方法在使用上有何差別呢
假如都是用於儲存多個struct上使用 會有什麼差別??