给出下列【代码】注释标注的代码的输出结果。 public class E { public static void main (String[]args) { byte a [] = "Java你好".getBytes(); int m = a.length; String s=new String(a,4,2); System.out.printf("%d:%s",m,s); } }
主观题
给出下列【代码】注释标注的代码的输出结果。 public class E { public static void main (String[]args) { byte a [] = "Java你好".getBytes(); int m = a.length; String s=new String(a,4,2); System.out.printf("%d:%s",m,s); } }