已知下列要求:1、 创建一个Student类实现Comparable接口,包含以下属性(int)id,(String)name,(int)age,(String)sex。2、 只提供了有参构造函数Student(int id, String name, int age, String sex)。3、 重写toString()方法,输出学生的所有信息。编写一个测试类Demo:1、在测试类Demo中,创建三个学生属性分别为id=1 name=tom age=20 sex=男id=3 name=fox age=19 sex=男id=2 name=james age=21 sex=男2、创建一个TreeMap
集合,令key值为学生对象,value值为学生的姓名,要求得到所有key值,并根据学生的age进行从大到小的排序输出学生信息。