博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C语言不透明结构体实现
阅读量:4982 次
发布时间:2019-06-12

本文共 569 字,大约阅读时间需要 1 分钟。

在头文件中typedef, 具体实现在c文件中,这样外部文件便无法访问此模块内的数据。

/*************************************** * struct.h ***************************************/typedef struct my_struct my_struct;void my_function(int my_g_handler,  my_struct *s, void *user_data);/**************************************** * struct.c ****************************************/ #include "struct.h"struct my_struct {    int element1;    int element2;};void my_function(int my_g_handler,  my_struct *s, void *user_data){    printf("%d", s->element1);}

 

转载于:https://www.cnblogs.com/cfox/archive/2013/03/27/2984377.html

你可能感兴趣的文章
安装一些包管理的记录 win10
查看>>
Android RecyclerView notifyDataSetChanged不起作用
查看>>
AndroidStudio3.0 Canary 8注解报错Annotation processors must be explicitly declared now.
查看>>
Android 一个改进的okHttp封装库
查看>>
genymotion下载出现Unable to create virtual device,Server returned HTTP status code 0.
查看>>
Android 下拉刷新框架实现
查看>>
ViewPager + Fragment实现滑动标签页
查看>>
Spring与Hibernate实现增删改查两方法
查看>>
Genymotion 插件在 Eclipse 和 Android Studio 中点击后无法初始化 Initialize Engine: failed 解决方法...
查看>>
1R安装环境
查看>>
初学Python——Socket网络编程
查看>>
Linux 如何实现 VLAN - 每天5分钟玩转 OpenStack(12)
查看>>
Gym - 101252H
查看>>
2019年2月15日,复习
查看>>
线性布局Row和Column
查看>>
关键路径(代码讲解)- 数据结构和算法68
查看>>
if语句三种格式
查看>>
CentOS 7 单用户模式修改root密码
查看>>
Linux DHCP原理
查看>>
Thread.currentThread()和this的区别——《Java多线程编程核心技术》
查看>>