黑马程序员技术交流社区

标题: 编写程序,循环接收用户从键盘输入多个字符串,直到输... [打印本页]

作者: feng0606    时间: 2015-8-28 23:24
标题: 编写程序,循环接收用户从键盘输入多个字符串,直到输...

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()方法最后为什么结果没有倒序打印出来??求大神告知.
作者: feng0606    时间: 2015-8-28 23:26
编写程序,循环接收用户从键盘输入多个字符串,直到输入“end”时循环结束,并将所有已输入的字符串按字典顺序倒序打印。 这是问题啊.




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2