假设Professor和Student都是实现了ITeacher接口的类下面的代码出现编译错误:
Professor p = new Professor();
Student s;
ITeacher t = new Students();
s = t;请问各位错在哪?