A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
public class StuscManage {
public static void main(String[] args) throws IOException {
  // TODO Auto-generated method stub
        Student stu1 = new Student();
        Student stu2 = new Student();
        Student stu3 = new Student();
        Student stu4 = new Student();
        Student stu5 = new Student();
        ArrayList<Student> al = new ArrayList<Student>();
        al.add(stu1);  al.add(stu2);   al.add(stu3);  al.add(stu4);
        al.add(stu5);
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] st = new String[4];
        for(int i = 0;i < 5;i++){
         st[i] = br.readLine();   
         String[] s = splitSt(st[i]);
         al.get(i).setName(s[0]);
         al.get(i).setMath(Integer.parseInt(s[1]));
         al.get(i).setChinese(Integer.parseInt(s[2]));
         al.get(i).setEnglish(Integer.parseInt(s[3]));         
        }         
        for(Student Student:al){
         System.out.println(Student.toString()+"\t"+Student.getSum());
        }
}
private static String[] splitSt(String st) {
  // TODO Auto-generated method stub
  String[] s = st.split(",");
  return s;
}
}

4 个回复

倒序浏览
高大上  。。看不懂
回复 使用道具 举报
东东西西 发表于 2015-5-3 20:34
高大上  。。看不懂

囧,我也是新手,看了毕老师的模仿的
回复 使用道具 举报
String[] st = new String[4];
        for(int i = 0;i < 5;i++){
         st[i] = br.readLine();   
         String[] s = splitSt(st[i]);
这里有问题,你数组的长度定义为4,即最后一个元素为st[3],但是你循环里面却出现了st[4],所以数组角标越界
回复 使用道具 举报 1 0
好尴尬的说看了半天没懂,我也是醉了!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马