-
Notifications
You must be signed in to change notification settings - Fork 30
TimeInterval
feilong edited this page May 22, 2020
·
1 revision
TimeInterval 定义了常用的时间间隔
当需要使用时间间隔
的时候,
原先你可能写作:
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setConnectTimeout(100000);//这是啥东东?
现在你可以写作:
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setConnectTimeout(100*TimeInterval.MILLISECOND_PER_SECONDS);//哦,以毫秒计量的 100秒
- 代码可读性更高
- 可以有效的避免由于手误带来的不必要的错误
core