码迷,mamicode.com
首页 > 编程语言 > 详细

201671010132 2017-2018第11周Java学习总结

时间:2017-11-05 12:19:45      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:string   call   作用   system   out   catch   scan   amp   lis   

try {
  in = new Scanner(Paths.get("H:\\data1.txt"));
 } catch (IOException e) {
  // TODO Auto-generated catch block
  e.printStackTrace();
 }
         while (in.hasNext())
         {
            String word = in.next();
            long callTime = System.currentTimeMillis();
            words.add(word);
            callTime = System.currentTimeMillis() - callTime;
            totalTime += callTime;
         }
     

      Iterator<String> iter = words.iterator();
      for (int i = 1; i <= 20 && iter.hasNext(); i++)
         System.out.println(iter.next());

这段程序是什么意思?它的作用是什么呢

201671010132 2017-2018第11周Java学习总结

标签:string   call   作用   system   out   catch   scan   amp   lis   

原文地址:http://www.cnblogs.com/blag/p/7786907.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!