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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

package org.newer.edit.review;

import java.util.ArrayList;
import java.util.List;



public class EditData {
       static  List<Student> arrStudent = new ArrayList<Student>();
        static Student  stu  = new Student();
            
               public  List<Student>  stuAdd(){
               
                return arrStudent;
               }
               
                   public static void main(String[] args) {
             Student  stu = new Student(1,"学生一",18);
             Student  stu1 = new Student(2,"学生二",19);
             Student  stu2 = new Student(3,"学生三",20);
             for (int i = 0; i < 3 ;i++) {
                                   // 报错:无法转型。  String cannot  be cast to Student;
                                    
            arrStudent.add((Student)(Object)("stu"+(i==0?"":i)));                   
}
}
// 我就是想通过对字符串的操作,让字符串的值跟stu/stu1/stu2相同,然后,将他们new 的对象存储到数组中去。
  

}

1 个回复

正序浏览
这个真心不会
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马