當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby Integer next用法及代碼示例


Ruby中的下一個函數返回數字的直接後繼,即返回數字+1。如果使用浮點值,則會引發錯誤消息。

用法:number.next  

參數:該函數采用整數,下一個要返回的整數。


返回值:該函數返回數字的直接後繼,即返回數字+ 1

範例1:

# Ruby program of next function 
  
# Initializing the numbers  
num1 = 100
num2 = 17
num3 = -90
num4 = -29
      
# Printing the modulo value 
puts num1.next
puts num2.next
puts num3.next 
puts num4.next 

輸出

101
18
-89
-28

範例2:

# Ruby program of next function 
  
# Initializing the numbers  
num1 = 19
num2 = -17
num3 = -18
num4 = 16
     
# Printing the modulo value 
puts num1.next
puts num2.next
puts num3.next 
puts num4.next 

輸出

20
-16
-17
17


相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby Integer next function with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。