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.
我想比较两个值都是 uint8_t A[8] = uint8_t B 都包含相同的数据,但一个变量是 continat 是一个块,另一个是一个数组
这是不可能的。是一个包含 8 个不同sA的数组,而只有一个值。uint_8B
A
uint_8
B
但是,您可以A使用以下语法比较数组的内容:
A[0] == B; A[1] == B; ...
如果它们相等,则它们中的每一个都返回 1(或 true),如果它们不相等,则返回 0(或 false)。