野火电子论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 18853|回复: 7

数据类型的定义

[复制链接]
发表于 2014-3-8 17:19:14 | 显示全部楼层 |阅读模式
怎样定义数据类型呢?跟51单片机不一样啊
回复

使用道具 举报

发表于 2014-3-8 17:19:55 | 显示全部楼层
一样啊,都是c语言,楼主具体指哪些不一样?
回复 支持 反对

使用道具 举报

 楼主| 发表于 2014-3-8 17:28:36 | 显示全部楼层
西门采文 发表于 2014-3-8 17:19
一样啊,都是c语言,楼主具体指哪些不一样?

比如我要定义一个变量a,例子里面为什么是u32这种的啊,好不习惯呀
回复 支持 反对

使用道具 举报

发表于 2014-3-8 17:30:30 | 显示全部楼层
u32之类的是3.0版本的 uint32_t是3.5版本的 兼容3.0 直接找到定义就可以了
回复 支持 反对

使用道具 举报

 楼主| 发表于 2014-3-8 17:37:13 | 显示全部楼层
anshyang 发表于 2014-3-8 17:30
u32之类的是3.0版本的 uint32_t是3.5版本的 兼容3.0 直接找到定义就可以了

我要定义一个整型数据类型为什么不可以用 int 呢
回复 支持 反对

使用道具 举报

发表于 2014-3-8 17:43:01 | 显示全部楼层
笑笑 发表于 2014-3-8 17:37
我要定义一个整型数据类型为什么不可以用 int 呢?

可以啊
typedef   signed          char int8_t;
typedef   signed short     int int16_t;
typedef   signed           int int32_t;
typedef   signed       __int64 int64_t;

    /* exact-width unsigned integer types */
typedef unsigned          char uint8_t;
typedef unsigned short     int uint16_t;
typedef unsigned           int uint32_t;
typedef unsigned       __int64 uint64_t;
回复 支持 反对

使用道具 举报

 楼主| 发表于 2014-3-8 17:53:35 | 显示全部楼层
anshyang 发表于 2014-3-8 17:43
可以啊
typedef   signed          char int8_t;
typedef   signed short     int int16_t;

3.5的库没这么定义过吧

typedef uint32_t  u32;
typedef uint16_t u16;
typedef uint8_t  u8;

typedef const uint32_t uc32;  /*!< Read Only */
typedef const uint16_t uc16;  /*!< Read Only */
typedef const uint8_t uc8;   /*!< Read Only */
回复 支持 反对

使用道具 举报

发表于 2014-3-8 18:05:11 | 显示全部楼层
笑笑 发表于 2014-3-8 17:53
3.5的库没这么定义过吧

typedef uint32_t  u32;

编译后对着变量类型 按F12,即可跳转到固件库对这些类型的定义,本质上都是c语言
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

联系站长|手机版|野火电子官网|野火淘宝店铺|野火电子论坛 ( 粤ICP备14069197号 ) 大学生ARM嵌入式2群

GMT+8, 2024-11-1 13:31 , Processed in 0.031372 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表