目前遇到的c语言中非常用数据类型

time_t:

#ifndef __TIME_T
#define __TIME_T     /*避免重复定义 time_t */
typedef long     time_t;    /*时间值time_t 为长整型的别名*/
#endif

uint8_t / uint16_t / uint32_t /uint64_t  是什么数据类型:

    那么_t的意思到底表示什么?具体的官方答案没有找到,不过我觉得有个答案比较接近。它就是一个结构的标注,可以理解为type/typedef的缩写,表示它是通过typedef定义的,而不是其它数据类型。

    按照posix标准,一般整形对应的*_t类型为:
    1字节     uint8_t
    2字节     uint16_t
    4字节     uint32_t
    8字节     uint64_t

   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 typedef signed char int8_t;
00025 typedefunsigned char uint8_t;
00026 
00027 typedef int int16_t;
00028 typedef unsigned int uint16_t;
00029 
00030 typedef long int32_t;
00031 typedef unsigned long uint32_t;
00032 
00033 typedef long long int64_t;
00034 typedef unsigned long long uint64_t;
00035 
00036 typedef int16_t intptr_t;
00037 typedef uint16_t uintptr_t;
00038 
00039 #endif



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值