下面的程序从一个字节序列创建了一个字符串,然后迭代遍历字符串中的字符,并将它们作为数字打印。请描述一下程序打印出来的数字序列: public class StringCheese { public static void main(String[] args) { byte bytes[] = new byte[256]. for (int i = 0. i < 256. i ) bytes[i] = (byte)i. String str = new String(bytes). for (int i = 0, n = str.length(). i < n. i ) System.out.println((int)str.charAt(i) " "). } }