快来个大神帮我解决

来源:4-11 学生选课---通过 Set 集合管理课程

慕妹3017280

2017-09-19 12:24

public static void main(String[] args) {

// TODO Auto-generated method stub

SetTest si= new SetTest();

si.testAdd();

si.testForEach();

//创建一个学生对象

Student student=new Student("1","小华");

System.out.println("欢迎学生"+student.name+"来选课");

      }

执行到这一步Student student=new Student("1","小华");他对Student报错,说Student cannot be resolved to a type意思就是学生不能分解成一种类型。为什么视频里老师的就不会报错我改怎么解决

写回答 关注

2回答

  • Imooc_Date
    2017-09-25 14:23:21

    student.getName();

  • 慕标7443549
    2017-09-19 15:14:15

    先运行一下试试,有时候我也会出现这种情况,运行一下,就错误消失了

Java入门第三季

Java中你必须懂得常用技能,不容错过的精彩,快来加入吧

409792 学习 · 4340 问题

查看课程

相似问题