Ruby-條件判斷

來源:互聯網
上載者:User

標籤:if   case   unless   

=begin      條件判斷語句包括if語句,unless語句,case語句,=end#if 語句=beginif 條件 then  處理1elsif 條件2 then  處理2else  處理3end=enda = 10b = 20if a > b  puts "a bigger than b"elsif a < b  puts "a smaller than b"else  puts "a is equal to b"endputs "a bigger than b" if a > b#unless 語句,與if語句相反,條件判斷為假的時執行處理=beginunless 條件  處理1else  處理2end=enda = 10b = 20unless a > b  puts "a smaller/same as than b"end#case 語句,適用於比較的對象只有一個的時候,根據這個對象的值不同,執行不同的處理;when可以一次指定多個值=begincase 比較對象when 值1 then  處理1when 值2 then  處理2when 值3 then  處理3else  處理4end=endtags = ["A", "IMG", "PRE"]tags.each do |word|  case word  when "P", "A", "I", "B", "BLOCKQUOTE"    puts "#{word} has child."  when "IMG", "BR"    puts "#{word} has child."  else    puts "#{word} cannoot be used"  endendarray = ["a", 1, nil]array.each do |word|  case word  when String    puts "the word is a String"  when Numeric     puts "the word is a Numeric"  else    puts "other words are Something"  endendtext.each_line do |line|  case line  when /^From:/i    puts "find a sender"  when /^To:/i    puts "find a receiver"  when /^$/    puts "resolution are finnished"    exit  else    break  endend


本文出自 “邀月乘風” 部落格,請務必保留此出處http://yaoyuechengfeng.blog.51cto.com/2958475/1774804

Ruby-條件判斷

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.