当前位置:网站首页>arduino获取数组的长度
arduino获取数组的长度
2022-07-06 09:16:00 【一入极客深似海】
假设,当前有这么一个数组
String str[]={
"ddd","ddd","dsgsd","fdsf","oooo"};
使用 sizeof() 函数
sizeof(str)是获取数组的总字节长度,
sizeof(str[0])是获取数组中一位的字节长度。
用总字节长度/一位字节长度。
得出的结果就是。数组的长度。
示例代码
String str[5]={
"ddd","ddd","dsgsd","fdsf","oooo"};
int num;
void setup() {
Serial.begin(9600);
num=sizeof(str) /sizeof(str[0]);
Serial.print("数组长度:");
Serial.print(num);
}
void loop() {
}
边栏推荐
- 高通&MTK&麒麟 手机平台USB3.0方案对比
- Those commonly used tool classes and methods in hutool
- [Blue Bridge Cup 2017 preliminary] buns make up
- Reading BMP file with C language
- 【kerberos】深入理解kerberos票据生命周期
- Correspondence between STM32 model and contex M
- 数据库面试常问的一些概念
- inline详细讲解【C语言】
- R & D thinking 01 ----- classic of embedded intelligent product development process
- Codeforces Round #753 (Div. 3)
猜你喜欢
机器学习--线性回归(sklearn)
R & D thinking 01 ----- classic of embedded intelligent product development process
RT-Thread的main线程“卡死”的一种可能原因及解决方案
2019腾讯暑期实习生正式笔试
OPPO VOOC快充电路和协议
【flink】flink学习
機器學習--線性回歸(sklearn)
error C4996: ‘strcpy‘: This function or variable may be unsafe. Consider using strcpy_ s instead
E-commerce data analysis -- User Behavior Analysis
RT-Thread API参考手册
随机推荐
Yarn installation and use
機器學習--線性回歸(sklearn)
锂电池基础知识
TypeScript
Reading notes of difficult career creation
[NPUCTF2020]ReadlezPHP
第4阶段 Mysql数据库
Word排版(小计)
inline详细讲解【C语言】
JS array + array method reconstruction
nodejs连接Mysql
5G工作原理详解(解释&图解)
共用体(union)详解【C语言】
Correspondence between STM32 model and contex M
冒泡排序【C语言】
Variable star user module
FTP文件上传文件实现,定时扫描文件夹上传指定格式文件文件到服务器,C语言实现FTP文件上传详解及代码案例实现
Come and walk into the JVM
MongoDB
B tree and b+ tree of MySQL index implementation