是否有小于字节的 .NET 数据类型?

发布于 2024-09-08 16:15:20 字数 14 浏览 12 评论 0原文

咬一口怎么样?

How about a Nibble etc.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

揽月 2024-09-15 16:15:20

不。即使您有一个布尔数组,我相信它们也被指定为每个布尔数组占用一个字节。

当然,您可以定义自己的数据类型,其有效值少于 256 个(如 Boolean 那样),但您不能使其在内存中占用的空间少于一个字节。

正如 LBushkin 指出的那样,诸如 BitArrayBitVector32 之类的类型可以有效地高效打包多个位 - 如果您愿意,您可以编写自己的 NybbleArray 类型通缉。

No. Even if you have an array of Booleans, I believe they're specified to take up one byte each.

Of course you can define your own data types which have fewer than 256 valid values (like Boolean does) but you can't make it take up less than a byte in memory.

As LBushkin pointed out, there are types such as BitArray and BitVector32 which effectively pack multiple bits efficiently - you could write your own NybbleArray type if you wanted.

酒绊 2024-09-15 16:15:20

没有比字节更小的本机数据类型,但是如果您想存储和操作一组打包位,可以使用 BitVector32位数组

There's no native data-type smaller than byte, however if you want to store and manipulate a group of packed bits, you can use BitVector32 or BitArray.

奈何桥上唱咆哮 2024-09-15 16:15:20

不,字节是最小的。

这可能会有所帮助:How can you nibble (nybble) bytes in C#?

No, byte is the smallest.

This may be helpful: How can you nibble (nybble) bytes in C#?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文