ruby的流程式控制制方法

來源:互聯網
上載者:User

這章我們將討論更多的Ruby流程式控制制.

case

我們用case語句測試有次序的條件.正如我們所見的,這和C,Java的switch相當接近,但更強大.

ruby> i=8ruby> case i| when 1, 2..5| print "1..5\n"| when 6..10| print "6..10\n"| end6..10nil

2..5表示2到5之間的一個範圍.下面的運算式測試 i 是否在範圍內:

(2..5) === i

case 內部也是用關係運算子 === 來同時測試幾個條件.為了保持ruby的面對對象性質, === 可以合適地理解為出現在 when 條件裡的對象.比如,下面的代碼現在第一個 when 裡測試字串是否相等,並在第二個 when 裡進行Regex匹配.

ruby> case 'abcdef'| when 'aaa', 'bbb'| print "aaa or bbb\n"| when /def/| print "includes /def/\n"| endincludes /def/nilwhile

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.