java吧 关注:1,240,494贴子:12,714,492
  • 4回复贴,共1
获取到系统的年月 放入数组中当作第一个元素,当年月发生变化时,插入年月当作第二个元素…… 但是第一个元素会随时间变化一直变化 怎样来做这个时间动态添加的数组 谢谢


来自iPhone客户端1楼2016-10-05 21:59回复


    来自iPhone客户端2楼2016-10-05 22:00
    回复


      来自iPhone客户端4楼2016-10-05 22:02
      回复


        来自iPhone客户端5楼2016-10-05 22:04
        回复
          public class demo {
          public static void main(String[] args) {
          List<Date> list=new ArrayList<Date>();
          new Thread(){
          public void run(){
          Date begin=new Date();
          list.add(begin);
          while(true){
          Date temp=new Date();
          if(temp.getMonth()!=begin.getMonth()){
          list.add(temp);
          begin=temp;
          }
          }
          }
          }.start();
          }
          }


          IP属地:河北7楼2016-10-05 22:47
          回复