问题描述
我有一个新手问题。什么是最小类型的对象大小?我是用b / b
用个别位做一些计算,并希望最小化内存
的使用。我虽然bool可能会这样做,但似乎每个bool都是一个
字节,而不是一点点。 bool是最小的类型吗?
谢谢,
Bob
Hi,
I have a newbie question. What is the smallest type object size? I am
doing some calculation with individual bits and want to minimize memory
usage. I though bool might do it but it seems like each bool is a
byte, instead of a bit. Is bool the smallest possible type?
Thanks,
Bob
推荐答案
如果速度很重要,请使用字节,你可以试试
System.Collections.BitArray类。
Arne
If speed is important use byte else you can try the
System.Collections.BitArray class.
Arne
如果速度很重要,请使用字节,你可以试试
System.Collections.BitArray类。
Arne
If speed is important use byte else you can try the
System.Collections.BitArray class.
Arne
这篇关于最小的类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!