来自:uint8_t / uint16_t / uint32_t /uint64_t 是什么数据类型 - 大总结,看完全明白了
uint8_t
/ uint16_t
/ uint32_t
/uint64_t
是什么数据类型
在nesc
的代码中,你会看到很多你不认识的数据类型,比如uint8_t
等。咋一看,好像是个新的数据类型,不过C
语言(nesc
是C
的扩展)里面好像没有这种数据类型啊!怎么又是u
又是_t
的?很多人有这样的疑问。论坛上就有人问:以*_t
结尾的类型是不是都是long
型的?在baidu上查一下,才找到答案,这时才发觉原来自己对C
掌握的太少。
那么_t
的意思到底表示什么?具体的官方答案没有找到,不过我觉得有个答案比较接近。它就是一个结构的标注,可以理解为type
/typedef
的缩写,表示它是通过typedef
定义的,而不是其它数据类型。
uint8_t
,uint16_t
,uint32_t
等都不是什么新的数据类型,它们只是使用typedef
给类型起的别名,新瓶装老酒的把戏。不过,不要小看了typedef
,它对于你代码的维护会有很好的作用。比如C
中没有bool
,于是在一个软件中,一些程序员使用int
,一些程序员使用short
,会比较混乱,最好就是用一个typedef
来定义,如:
typedef char bool;
一般来说,一个C
的工程中一定要做一些这方面的工作,因为你会涉及到跨平台,不同的平台会有不同的字长,所以利用预编译和typedef
可以让你最有效的维护你的代码。为了用户的方便,C99
标准的C
语言硬件为我们定义了这些类型,我们放心使用就可以了。
按照posix
标准,一般整形对应的*_t
类型为:
1字节 uint8_t
2字节 uint16_t
4字节 uint32_t
8字节 uint64_t
附:C99
标准中inttypes.h
的内容
00001 /*
00002 inttypes.h
00003
00004 Contributors:
00005 Createdby Marek Michalkiewicz <marekm@linux.org.pl>
00006
00007 THISSOFTWARE IS NOT COPYRIGHTED
00008
00009 Thissource code is offered for use in the public domain. You may
00010 use,modify or distribute it freely.
00011
00012 Thiscode is distributed in the hope that it will be useful, but
00013 WITHOUTANY WARRANTY. ALLWARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
00014 DISCLAIMED. This includes but is not limited towarranties of
00015 MERCHANTABILITYor FITNESS FOR A PARTICULAR PURPOSE.
00016 */
00017
00018 #ifndef __INTTYPES_H_
00019 #define __INTTYPES_H_
00020
00021 /* Use [u]intN_t if you need exactly N bits.
00022 XXX- doesn't handle the -mint8 option. */
00023
[00024](http://ccrma.stanford.edu/courses/250a-fall-2002/docs/avrgcc/inttypes_8h.html#a0) typedefsigned char int8_t;
[00025](http://ccrma.stanford.edu/courses/250a-fall-2002/docs/avrgcc/inttypes_8h.html#a1) typedefunsigned char uint8_t;
00026
[00027](http://ccrma.stanford.edu/courses/250a-fall-2002/docs/avrgcc/inttypes_8h.html#a2) typedefint int16_t;
[00028](http://ccrma.stanford.edu/courses/250a-fall-2002/docs/avrgcc/inttypes_8h.html#a3) typedefunsigned int uint16_t;
00029
[00030](http://ccrma.stanford.edu/courses/250a-fall-2002/docs/avrgcc/inttypes_8h.html#a4) typedeflong int32_t;
[00031](http://ccrma.stanford.edu/courses/250a-fall-2002/docs/avrgcc/inttypes_8h.html#a5) typedefunsigned long uint32_t;
00032
[00033](http://ccrma.stanford.edu/courses/250a-fall-2002/docs/avrgcc/inttypes_8h.html#a6) typedeflong long int64_t;
[00034](http://ccrma.stanford.edu/courses/250a-fall-2002/docs/avrgcc/inttypes_8h.html#a7) typedefunsigned long long uint64_t;
00035
[00036](http://ccrma.stanford.edu/courses/250a-fall-2002/docs/avrgcc/inttypes_8h.html#a8) typedefint16_t intptr_t;
[00037](http://ccrma.stanford.edu/courses/250a-fall-2002/docs/avrgcc/inttypes_8h.html#a9) typedefuint16_t uintptr_t;
00038
00039 #endif