Java 字节数组的长度length

字节数组开始的长度length即为数组的size,但是当其被字符串对应的字符数组复制后,其长度就变为了字符串的长度

public class Buf_test {
	 byte[] buf;
	 int [] array;
	 public void test() {
		 buf = new byte[255];
//buf首先初始化为数组,其length为255,此时buf各元素的值为0
		 System.out.println(buf.length);
		 buf = "welcome".toString().getBytes();
//buf被String型变量产生的bytes[]赋值后,buf的长度length变为7
		 System.out.println(buf.length);
	 }
	public static void main(String args[]) {
		Buf_test t = new Buf_test();
		t.test();
	}
}

 

你可能感兴趣的:(JAVA,字节数组)