Skip to content
This repository has been archived by the owner on Aug 20, 2021. It is now read-only.

TimeInterval

feilong edited this page Nov 19, 2016 · 6 revisions

TimeInterval 定义了常用的时间间隔

1.简介

当需要使用时间间隔的时候,

原先你可能写作:

	HttpURLConnection con = (HttpURLConnection) url.openConnection();
	con.setConnectTimeout(100000);//这是啥东东?

现在你可以写作:

	HttpURLConnection con = (HttpURLConnection) url.openConnection();
	con.setConnectTimeout(100*TimeInterval.MILLISECOND_PER_SECONDS);//哦,以毫秒计量的 100秒
	

1.1优点

  1. 代码可读性更高
  2. 可以有效的避免由于手误带来的不必要的错误