已采纳回答 / 慕田峪1094725
<...code...>貌似两者值确实不一样,好像你只是转换给S2赋值了一个字符串,但是类型不匹配,我的理解时牛和羊作比较,应该结果是不一样的,尽管你可以叫他们相同的名字
2019-07-20
最赞回答 / qq_慕工程040105
public class Student { public String id; public String name; public Set<Course> courses; public Student(String id,String name){ this.id = id; this.name = name; this.courses = new HashSet<Course>(); }}
2019-07-12