![JAR search and dependency download from the Maven repository](/logo.png)
com.ksyun.ks3.utils.Timer Maven / Gradle / Ivy
package com.ksyun.ks3.utils;
import java.util.Date;
/**
* @author lijunwei[[email protected]]
*
* @date 2014年10月20日 下午6:24:02
*
* @description
**/
public class Timer {
private static long t;
public static Long start()
{
t = new Date().getTime();
return t;
}
public static Long end()
{
return new Date().getTime() - t;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy