W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
范圍(Range)無處不在:January 到 December、 0 到 9、等等。Ruby 支持范圍,并允許我們以不同的方式使用范圍:
范圍的第一個也是最常見的用途是表達序列。序列有一個起點、一個終點和一個在序列產(chǎn)生連續(xù)值的方式。
Ruby 使用 ''..'' 和 ''...'' 范圍運算符創(chuàng)建這些序列。兩點形式創(chuàng)建一個包含指定的最高值的范圍,三點形式創(chuàng)建一個不包含指定的最高值的范圍。
(1..5) #==> 1, 2, 3, 4, 5 (1...5) #==> 1, 2, 3, 4 ('a'..'d') #==> 'a', 'b', 'c', 'd'
序列 1..100 是一個 Range 對象,包含了兩個 Fixnum 對象的引用。如果需要,您可以使用 to_a 方法把范圍轉(zhuǎn)換為列表。嘗試下面的實例:
#!/usr/bin/ruby $, =", " # Array 值分隔符 range1 = (1..10).to_a range2 = ('bar'..'bat').to_a puts "#{range1}" puts "#{range2}"嘗試一下 ?
這將產(chǎn)生以下結果:
1, 2, 3, 4, 5, 6, 7, 8, 9, 10 bar, bas, bat
范圍實現(xiàn)了讓您可以遍歷它們的方法,您可以通過多種方式檢查它們的內(nèi)容:
#!/usr/bin/ruby # -*- coding: UTF-8 -*- # 指定范圍 digits = 0..9 puts digits.include?(5) ret = digits.min puts "最小值為 #{ret}" ret = digits.max puts "最大值為 #{ret}" ret = digits.reject {|i| i < 5 } puts "不符合條件的有 #{ret}" digits.each do |digit| puts "在循環(huán)中 #{digit}" end嘗試一下 ?
這將產(chǎn)生以下結果:
true 最小值為 0 最大值為 9 不符合條件的有 [5, 6, 7, 8, 9] 在循環(huán)中 0 在循環(huán)中 1 在循環(huán)中 2 在循環(huán)中 3 在循環(huán)中 4 在循環(huán)中 5 在循環(huán)中 6 在循環(huán)中 7 在循環(huán)中 8 在循環(huán)中 9
范圍也可以用作條件表達式。例如,下面的代碼片段從標準輸入打印行,其中每個集合的第一行包含單詞 start,最后一行包含單詞 end.:
while gets print if /start/../end/ end
范圍可以用在 case 語句中:
#!/usr/bin/ruby # -*- coding: UTF-8 -*- score = 70 result = case score when 0..40 "糟糕的分數(shù)" when 41..60 "快要及格" when 61..70 "及格分數(shù)" when 71..100 "良好分數(shù)" else "錯誤的分數(shù)" end puts result嘗試一下 ?
這將產(chǎn)生以下結果:
及格分數(shù)
范圍的最后一個用途是間隔測試:檢查某些值是否落在范圍表示的間隔里。這是使用 === 相等運算符來完成計算
#!/usr/bin/ruby if ((1..10) === 5) puts "5 lies in (1..10)" end if (('a'..'j') === 'c') puts "c lies in ('a'..'j')" end if (('a'..'j') === 'z') puts "z lies in ('a'..'j')" end嘗試一下 ?
這將產(chǎn)生以下結果:
5 lies in (1..10) c lies in ('a'..'j')
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: