标签: bitwise-operators bitmask
我想检查一个面具是否包含一个标志。我一直这样写:
!(mask & flag)
但有时候,所有括号的代码都会变得有些混乱。有没有更好的方法来写这个?更简洁的东西?