website: https://en.wikipedia.org/wiki/Opaque_pointer#C
上網查了一下,opaque pointer主要是用來hide implementation,也就是作了一個encap-
sulation的動作。
看了一下wiki給的C example,有幾個問題想請教各位
在例題裡,作者把structure definition放在obj.c,且include obj.h,並且在obj.h裡宣
告了 struct obj
Q1: 第一次看到struct obj;這種用法,這種用法是告訴compiler我在別的file裡有define
struct obj這個data type嗎? 如果是的話,那應該要 + extern吧?
為什麼不加extern也可以?
Q2: 剛剛翻了textbook(C how to program),作者說:
struct obj{
int id;
};
這個行為叫"define"一個structure且不reserve any space in memory(page 384)。
這個跟我心中認為的define有點出入,不reserve memory的話不是應該叫declare嗎?
還是對於struct與對於variable來說,define與declare的定義不一樣?
Q3: 我原本習慣的作法是直接把
struct obj{
int id;
};
這個definition放在obj.h。並不像作者,把它放在.c檔且在.h裡面多declare一個
struct obj。
我想這就是作者所謂的hide implementation。也就是說,struct裡面的member就是
implementation囉?
我認知的implementation是指"實作",也就是function裡的snippet。
所以struct裡面的member也算是implementation嗎?還是在特定的context裡才算數?
謝謝撥冗查看~