【简答题】请说出E类中标注的【代码1】,【代码2】的输出结果。 public class E { public static void main(String args[]) { byte d[]="abc我们喜欢篮球".getBytes(); System.out.println(d.length); //【代码1】 String s=new String(d,0,7); System.out.pri...
【简答题】请说出E类中标注的【代码】的输出结果。 public class E { public static void main (String[]args) { String str = new String ("苹果"); modify(str); System.out.println(str); //【代码输出:_________】 } public static void modify (...
【简答题】请说出E类中标注的【代码1】和【代码2】的输出结果。 public class E{ public static void main (String arg[]) { byte d[]="abc我们喜欢篮球“.getByte(); System.out,println(d.length);//【代码1】 String s=new String(d,0.7); System.out.println(...