查看Int的源代码
←
Int
跳转至:
导航
、
搜索
因为以下原因,你没有权限编辑本页:
你刚才请求的操作只对属于该用户组的用户开放:
用户
您可以查看并复制此页面的源代码:
{| border="0" cellpadding="20" width="100%" |- |width="100%" valign="top" align="left"| <font color="orange" size="+1">'''描述'''</font> Integers are your primary data-type for number storage. On the Arduino Uno (and other ATMega based boards) an int stores a 16-bit (2-byte) value. This yields a range of -32,768 to 32,767 (minimum value of -2^15 and a maximum value of (2^15) - 1). On the Arduino Due and SAMD based boards (like MKR1000 and Zero), an int stores a 32-bit (4-byte) value. This yields a range of -2,147,483,648 to 2,147,483,647 (minimum value of -2^31 and a maximum value of (2^31) - 1). int's store negative numbers with a technique called 2's complement math. The highest bit, sometimes referred to as the "sign" bit, flags the number as a negative number. The rest of the bits are inverted and 1 is added. The Arduino takes care of dealing with negative numbers for you, so that arithmetic operations work transparently in the expected manner. There can be an unexpected complication in dealing with the bitshift right operator (>>) however. 译: 整数是基本数据类型。 在UNO(和其他ATMega控制板)上,占用16bit即2字节。整数的范围为-32,768到32,767( -2^15 ~(2^15)-1)。 在DUE和SAMD(像:MKR1000和Zero)上,占用32bit即4字节。整数的范围为-2,147,483,648到2,147,483,647( -2^31 ~(2^31)-1)。 整数类型使用2的补码方式存储负数。最高位通常为符号位,表示数的正负。其余位被“取反加1”。 Arduino为您处理负数计算问题,所以数学计算对您是透明的。但是,当处理右移位运算符(»)时,可能有未预期的编译过程。 <font color="orange" size="+1">'''示例'''</font> <pre style="color:dimgray"> int ledPin = 13; </pre> <font color="orange" size="+1">'''语法'''</font> <pre style="color:dimgray"> int var = val; </pre> - var - your int variable name - val - the value you assign to that variable <font color="orange" size="+1">'''编程提示'''</font> When variables are made to exceed their maximum capacity they "roll over" back to their minimum capacity, note that this happens in both directions. 译: 当变量数值过大而超过整数类型所能表示的范围时(-32,768到32,767),变量值会“回滚” Example for a 16-bit int: <pre style="color:dimgray"> int x; x = -32768; x = x - 1; // x now contains 32,767 - rolls over in neg. direction x = 32767; x = x + 1; // x now contains -32,768 - rolls over </pre> <font color="orange" size="+1">'''扩展阅读'''</font> :- [[byte]] :- [[unsigned int]] :- [[long]] :- [[unsigned long]] |} ---- [[Arduino语法参考 | 返回Arduino语法参考列表]] 更多建议和问题欢迎反馈至 [http://www.yfrobot.com YFRobot论坛]
返回
Int
。
导航菜单
个人工具
登录
名字空间
页面
讨论
不转换
变种
不转换
简体
繁體
大陆简体
香港繁體
澳門繁體
大马简体
新加坡简体
台灣正體
查看
阅读
查看源代码
查看历史
操作
搜索
导航
首页
YF-论坛提问
YFRobot-直营店
YFRobot-企业店
Arduino
Arduino之入门篇
Arduino入门教程
Arduino语法参考
Arduino库
Arduino核心代码
编程平台
Mixly库
Mind+库
MakeCode扩展
传感器系列
积木式传感器系列
黑板传感器系列
蓝板传感器系列
Micro:Bit
Micro:Bit 通用基础教程
Valon智能车
Valon-I
帮助
帮助
wiki语法参考
工具箱
链入页面
相关更改
特殊页面
页面信息