A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始


import java.util.*;
import java.io.*;


public class Test_5
{
        public static void main(String [] args)
        {        
        
                //获取键盘录入
                BufferedReader bufr =
                                new BufferedReader(new InputStreamReader(System.in));
               
                //定义一个集合容易存放字符串.
                TreeSet<String> ts = new TreeSet<String>(Collections.reverseOrder());
               
                String line = null;
                try
                {
                        while((line =bufr.readLine())!=null)
                        {
                                if(line.equals("end"))
                                        break;
                                ts.add(line);        
                        }
                        /*
                        Iterator it = ts.iterator();
                        while(it.hasNext())
                        {
                                String str = (String)it.next();
                                
                                System.out.println(str);
                        }
                        */
                        System.out.println(ts);
                }
                catch(IOException e)
                {
                        throw new RuntimeException("写入失败");
                }
                finally
                {
                        if(bufr!=null)
                                try
                                {
                                        bufr.close();
                                }
                                catch(IOException e)
                                {
                                        throw new RuntimeException("关闭失败");
                                }
                }
               
               
        }
}
调用了Collections.reverseOrder()方法最后为什么结果没有倒序打印出来??求大神告知.

1 个回复

倒序浏览
编写程序,循环接收用户从键盘输入多个字符串,直到输入“end”时循环结束,并将所有已输入的字符串按字典顺序倒序打印。 这是问题啊.
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马