黑马程序员技术交流社区

标题: 求解决:怎么样让"Sex"和前面的对齐? [打印本页]

作者: 棉/mg花/x糖    时间: 2013-5-25 18:02
标题: 求解决:怎么样让"Sex"和前面的对齐?
本帖最后由 棉/mg花/x糖 于 2013-5-26 16:50 编辑

求解决:怎么样让"Sex"和前面的对齐?

刚写了一个关于通过数组实现获取学生属性的程序。
问题:怎么样让"Sex"和前面的对齐?



程序源码如下:请问如何修改?

  1. package com.yb.ArrayAndString;

  2. class Student {
  3.     private String name;
  4.     private char sex;
  5.     private double score;
  6.     public Student(String name,char sex,double score) {
  7.         // TODO Auto-generated constructor stub
  8.         this.name = name;
  9.         this.sex = sex;
  10.         this.score = score;
  11.     }
  12.     String getName() {
  13.         return name;
  14.     }
  15.     char getSex() {
  16.         return sex;
  17.     }
  18.     void studPrint() {
  19.         System.out.println("Name:"+name+"\t\tSex:"+sex+"\tScore:"+score);
  20.     }
  21. }

  22. public class StudentClass {
  23.     /**
  24.      * @param args
  25.      */
  26.     public static void main(String[] args) {
  27.         // TODO Auto-generated method stub
  28.         String name;
  29.         char sex;
  30.         int len;
  31.         //声明对象数组,声明对象数组时不为每一个对象数组的元素分配存储空间
  32.         Student[] st = new Student[3];
  33.         //用new为每一个对象数组元素分配存储空间
  34.         st[0] = new Student("li",'F',89);
  35.         st[1] = new Student("he",'M',90);
  36.         st[2] = new Student("zhang",'M',78);
  37.         len = st.length;
  38.         //对象数组元素的引用
  39.         for(int i = 0; i < len; i++) {
  40.             st[i].studPrint();
  41.         }
  42.         name = st[1].getName();
  43.         sex = st[1].getSex();
  44.         System.out.println("Name 1:"+name+"\tSex:"+sex);
  45.     }
  46. }
复制代码

作者: 赵利斌    时间: 2013-5-25 19:27

  1.         st[0] = new Student("li\t",'F',89);

  2.         st[1] = new Student("he\t",'M',90);

  3.         st[2] = new Student("zhang",'M',78);

  4.         len = st.length;
复制代码
这样就可以了啊
作者: 棉/mg花/x糖    时间: 2013-5-25 21:04
赵利斌 发表于 2013-5-25 19:27
这样就可以了啊

果然,成功了,感激哈........^_^

作者: 王靖远    时间: 2013-5-26 00:15
常用的转义字符:通过\来转变后面字母或者符号的含义。
\n:换行。
\b:退格。 相当于Backspace
\r:按下回车键 相当于回车键
\t:制表符。相当于tab键




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2