为什么我更改构造器形参不会报错?为什么老师的能报错
public TestDIServiceImpl(TestDao testDao){
super();
this.testDao = testDao;
}
比如更改testDao为testDao1,老师的报错,我的却没有报错
public TestDIServiceImpl(TestDao testDao){
super();
this.testDao = testDao;
}
比如更改testDao为testDao1,老师的报错,我的却没有报错
2018-12-15
举报