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.
我需要对最多 140 位的位数组执行快速计算。我需要的操作是:按位比较、按位运算(和、或、异或)
就内存空间而言,将其存储在 C# 中的最有效方法是什么?
经过一番考虑,我将使用一个 18 字节 = 144 位的数组,浪费了 4 位,我将在字节数组中实现填充以模拟底层 18 字节的按位运算。