Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在阅读一些 Arduino 示例的代码,我遇到了这一行:
uint16_t pulses[100][2];
看来这是在定义一个 100x2 数组——对吗?
你是对的。它定义了一个 100x2 的无符号 16 位整数数组。