Java for循環中設置停頓 邏輯代碼中一樣適用

 1\ for (Object object : jsonArray) {
  
  2\ Thread.currentThread().sleep(1000);
  
  3\ list.add(((JSONObject)object).get("Name"));
  
  4\ }
  
  此處的停頓 適用於邏輯代碼和循環 1000的單位爲毫秒
  
  停頓後提示一個未處理的異常
  
  此時須要異常處理 
  
 1\ //拋出異常
  
 2\ throws InterruptedException
  
 3\ //或者try catch操做
  
 4\ try {
  
 5\ Thread.currentThread().sleep(1000);
  
 6\ } catch (InterruptedException e) {
  
 7\ e.printStackTrace();
  
 8\ }
  
9\  ---------------------
  
  做者:超級鴻
  
  來源:CSDN
  
  原文:https://blog.csdn.net/weixin_40195422/article/details/84789856
  
  版權聲明:本文爲博主原創文章,轉載請附上博文連接!json

相關文章
相關標籤/搜索