本帖最后由 杨兴庭 于 2013-7-25 23:18 编辑
public class Test {
/**
* @param args
*/
public static void main(String[] args) {
// TODO 自动生成方法存根
String str="123456789";
byte[]bt=new byte[4];
System.out.println(bt.length);
bt=str.getBytes();
System.out.println(bt.length);
}
}
打印的结果是4,9.。为什么,求解。
|