码迷,mamicode.com
首页 > 其他好文 > 详细

intptr_t、uintptr_t数据类型

时间:2020-06-03 23:35:30      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:art   detail   for   type   别名   pointer   types   lse   http   

在64位的机器上,intptr_t和uintptr_t分别是long int、unsigned long int的别名;在32位的机器上,intptr_t和uintptr_t分别是int、unsigned int的别名。

/* Types for `void *‘ pointers.  */
#if __WORDSIZE == 64
# ifndef __intptr_t_defined
typedef long int		intptr_t;
#  define __intptr_t_defined
# endif
typedef unsigned long int	uintptr_t;
#else
# ifndef __intptr_t_defined
typedef int			intptr_t;
#  define __intptr_t_defined
# endif
typedef unsigned int		uintptr_t;
#endif

参考资料:https://blog.csdn.net/cs_zhanyb/article/details/16973379

intptr_t、uintptr_t数据类型

标签:art   detail   for   type   别名   pointer   types   lse   http   

原文地址:https://www.cnblogs.com/songsongblue/p/13040603.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!