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.
我不明白面具的想法,为什么它在这里有用?
假设您有一个值,并且您希望将所有位设置为零,除了您感兴趣的少数位。因此,您创建了一个掩码,它在您想要保护的位置只有 1。当您对掩码使用AND操作时,这就是您得到的结果。在我看来,这$t1是上面用作掩码的值。
AND
$t1
您可能熟悉画家如何使用遮蔽胶带覆盖不应涂漆的区域。这是同一种想法。
基本上有三种不同的操作可以通过这种方式屏蔽位:AND清除位、OR设置位和XOR切换位。
OR
XOR