equals指内容(值)相等,== 指地址相等
===============set类
set继承自collection,但set没有新增方法,只是set里的元素不重复,下面是set常用方法
===================Comparable 接口
===============TreeSet 遍历时,按顺序输出,
存入TreeSet集合中的对象必须实现Comparable接口,否则在运行时,编译期不出错,运行时报RuntimeException
=================map 接口 map中不能包含相同的key
=================两个比较接口