為什么我更改構造器形參不會報錯?為什么老師的能報錯
public TestDIServiceImpl(TestDao testDao){
super();
this.testDao = testDao;
}
比如更改testDao為testDao1,老師的報錯,我的卻沒有報錯
public TestDIServiceImpl(TestDao testDao){
super();
this.testDao = testDao;
}
比如更改testDao為testDao1,老師的報錯,我的卻沒有報錯
2018-12-15
舉報
2019-01-05
我這邊可以復現報錯的情況,你看看你的方法體有沒有修改
2018-12-15
是不是哪里寫錯了呀