码迷,mamicode.com
首页 > 其他好文 > 详细

Tab宽度不显示(未解决)

时间:2017-03-12 00:51:56      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:状态   owa   com   font   enum   rgb   技术   lin   rgs   

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

Tab宽度不显示(未解决)

标签:状态   owa   com   font   enum   rgb   技术   lin   rgs   

原文地址:http://www.cnblogs.com/chendifan/p/6536593.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!