Blame view

src/com/ectrip/cyt/utils/CountDownTimer.java 267 Bytes
3c2353cd   杜方   1、畅游通核销app源码提交;
1
2
3
4
5
6
7
8
9
10
11
12
13
  package com.ectrip.cyt.utils;
  
  /**
   * @author jigo
   *网络计时
   */
  public class CountDownTimer {
  	public static long firstTime=0;
  	public static long endTime=0;
  	public static void timeDifference(){
  		System.out.println((endTime-firstTime)+"CountDownTimer");
  	}
  }