Structs interface and Hiding members in a C struct discusses various ways in accessing /modifying members.

What would be pros/cons of using:

  1. Opaque handle to struct and setters/getters
  2. Accessing members directly
  3. foo.value(&foo, value) functions (like C++ class methods)
  4. Separate header files for same struct exposing public members for client and all members internally

In my case, I'm doing OOP in C and all my structs hold a list of properties (id, name, desc, ...). I need to track changes so that changed status could be transmitted over network. The best way, as I see it, would be to transmit the delta (changes between individual members) and not retransmitting the whole struct.

Thank you

link|improve this question
What is the quiestion? – Petr Abdulin Aug 29 '11 at 8:14
It is to list pros/cons of an each way so one could choose which suits him/her best instead of selecting blindly not considering possible future limitations. – mindless Aug 29 '11 at 8:33
SO is generally intended for asking questions. You can use other host, e.g. The Code Project for posting coding-related articles. – Petr Abdulin Aug 29 '11 at 9:31
1  
It IS A QUESTION to list and discuss pros and cons of different ways accessing C struct members. – mindless Aug 29 '11 at 9:54
E.G. setters and getters leads to bloat but also provides encapsulation and way to track changes to particular members which would be impossible if we could access those members directly. Using an opaque pointer (compiler firewall) does not allow client to gain any insight of an internal layout of a struct but also makes harder to learn about possible interaction with a struct while looking at its header. – mindless Aug 29 '11 at 10:01
show 3 more comments
feedback

closed as not constructive by Oli Charlesworth, 0A0D, Tim Post Aug 29 '11 at 15:23

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.