本帖最后由 て淡莣了陌生 于 2013-5-12 00:36 编辑
class Demo {
public static void main(String[] args) {
Set<Person> set = new TreeSet<>();
set.add(new Person("张三", 19));
set.add(new Person("李四", 20));
set.add(new Person("王五", 21));
set.add(new Person("赵六", 22));
System.out.println(set);
为什么运行这段代码是会抛ClassCastException异常啊,看着没什么问题啊,求帮忙啊,郁闷! |