溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

ruby 循環(huán)控制

發(fā)布時(shí)間:2020-05-31 16:27:31 來源:網(wǎng)絡(luò) 閱讀:753 作者:yangbinfc 欄目:編程語言

循環(huán):

 Loop :

    循環(huán)始終執(zhí)行后面方法 知道break跳出

  1. if __FILE__ == $0 
  2.   x = 0 
  3.   loop do 
  4.     x += 1 
  5.     if x<=5  
  6.       print x, ""  
  7.     else 
  8.       break 
  9.     end 
  10.   end 
  11. end 

 2:While 循環(huán) 

3:Until

 

  1. if __FILE__ == $0 
  2.  x = 0 
  3.  until x == 9 
  4.   print x += 1 
  5.  end 
  6. end 

4:Iterator:

      ruby語言不支持C/C++/Java中的for循環(huán),但ruby可以使用迭代器來提供 更為強(qiáng)大的功能

   具體方法: times   upto  downto step

   容器類: each

 

5:For in

  如果一個(gè)類提供了each方法那么對(duì)應(yīng)的可以使用 for in循環(huán)

 

  1. if __FILE__ == $0 
  2.   for fruit in %w{apple orange banana} 
  3.     print fruit,"" 
  4.   end 
  5. end 

 6:next

  類似C++中的continue 執(zhí)行下一次循環(huán)

 

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI