gpt4 book ai didi

c++ - "uFlags &= ~CHN_PANNING"命令有什么作用?

转载 作者:太空宇宙 更新时间:2023-11-03 10:38:29 28 4
gpt4 key购买 nike

这个命令在 .c/.cpp 文件中是什么意思?

uFlags &= ~CHN_PANNING;

根据我的研究,uFlags 是 Bit-Wise 标志。

最佳答案

~ 是位取反。它将 011001 转换为 100110 等。如果您 & 对数字进行位取反,您实际上删除了 1-从左边的位开始右边的位(1在位取反后变成0并且没有位可以留在 1 如果它是 &-ed with 00 变成 1 并且 &-ing with 1 不会改变原始位)。

bitset0 &=~ bitset1(或 bitset0 &~ bitset)因此是一种用于(位)集减法的 C/C++ 习语。它从 bitset0 中减去 bitset1(即数学符号中的 bitset0\bitset1),可能(在 = 版本中)将结果分配给 bitset0

关于c++ - "uFlags &= ~CHN_PANNING"命令有什么作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52239464/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com