public class ArrayUtil {
public static void main(String[] args) {
int[] arr = new int[] { 2, 3, 5, 7, 11, 13, 17, 19 };
array.showArray(arr);// 遍历
}
}
class Array {
// 遍历数组元素
public void showArray(int[] i) {
System.out.print("数组遍历:");
- //System.out.print("数组遍历:" + "\t");
for (int a = 0; a < i.length; a++) {
System.out.print(i[a] + "\t");
}
System.out.println();
}
}
结果:
改第11行为第12行后结果:
使用第11行时,2和3之间为什么不显示tab宽度?
而改为12行,即冒号后添加tab后,为什么还会改变数组元素“2”后面的制表符的显示状态?
时间: 2024-10-11 01:16:11