What defines an opaque type in C, and when are they necessary and/or useful?

后端 未结 3 2012
你的背包
你的背包 2020-12-05 01:37

I\'ve seen the concept of \'opaque types\' thrown around a bit but I really haven\'t found a succinct answer as to what defines an opaque type in C and more importantly what

3条回答
  •  情书的邮戳
    2020-12-05 02:33

    It is the most generally used for library purpose. The main principe behind Opaque type in c is to use data though its pointer in order to hide data handling implementation. Since the implementation is hidden, you can modify the library without recompiling any program which depend on it (if the interface is respected)

    eg: version 1:

    // header file
    struct s;
    
    int s_init(struct s **x);
    int s_f(struct s *x);
    int s_g(struct s *x);
    
    // source file
    struct s { int x; }
    
    int s_init(struct s **x) { *x = malloc(...); }
    int s_f(..) { ... }
    int s_g(..) { ... }
    

    version 2

    // header file
    struct s;
    
    int s_init(struct s **x);
    int s_f(struct s *x);
    int s_g(struct s *x);
    
    // source file
    struct s { int y; int x; }
    
    int s_init(struct s **x) { *x = malloc(...); }
    int s_f(..) { ... }
    int s_g(..) { ... }
    

    From your program side, nothing changed! and as said previously, no need to recompile every single program which rely on it.

提交回复
热议问题