跟着敲 为啥会报错呢

来源:4-4 学生选课---添加课程 Ⅰ

Duaire

2019-01-26 13:40

public ListTest() {

this.coursesToSelect = new ArrayList();

}

public static void main(String[] args) {

ListTest lt =new ListTest();

lt.testAdd();

}


Exception in thread "main" java.lang.Error: Unresolved compilation problems: 

Type mismatch: cannot convert from ArrayList to ListTest

The method add(Course) is undefined for the type ListTest

The method get(int) is undefined for the type ListTest


at collection.ListTest.<init>(ListTest.java:9)

at collection.ListTest.main(ListTest.java:22)


写回答 关注

3回答

  • 慕移动9181930
    2022-03-25 13:36:57

    具体要看你写的CSS,有可能你的body上面被div覆盖了

  • 创客2018
    2019-01-26 16:04:52

    初始化方法错了。

  • 慕少3069153
    2019-01-26 15:49:41
    你至少把代码全部放出来把

    Duaire

    我对比了一下代码,是我一个申明自动补全给我写错了

    2019-01-26 17:37:38

    共 1 条回复 >

Java入门第三季

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

409792 学习 · 4340 问题

查看课程

相似问题