尽量减少布尔操作的内存占用,以及布尔的存储方式

package caf;


public class CVF
{
	public static void main(String[] args)
	{
	
		n();
	}
	
	public static void n()
	{
		boolean a; 
		a = true;
		a = false;
		boolean[] b = new boolean[1];
		b[0] = true;
		b[0] = false;
		
	  /*   0:	iconst_1
		   1:	istore_0
		   2:	iconst_0
		   3:	istore_0
		   4:	iconst_1
		   5:	newarray boolean
		   7:	astore_1
		   8:	aload_1
		   9:	iconst_0
		   10:	iconst_1
		   11:	bastore
		   12:	aload_1
		   13:	iconst_0
		   14:	iconst_0
		   15:	bastore
		   16:	return
		*/
	}
}


这里可以看到,单个布尔是以int来存储的,而java里1表示true,0表示false,而布尔数组是以byte数组存储。考虑到内存占用的情况,使用位来表示布尔比较好,类似于BitSet用boolean表示位一样。

下边在看下datainputstream中readboolean方法的源码

public final boolean readBoolean() throws IOException {
	int ch = in.read();
	if (ch < 0)
	    throw new EOFException();
	return (ch != 0);
    }

这也就好解释了布尔的存储方式。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值