为什么这样不对studentList.add(new student("k","Lucy"));,这样是对的studentList.add(new student(k+"","Lucy"));。那个k是Integer类型的
k+“”这样可以吧integer类型转化为String类型
int类型的不用引号,string类型用引号