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


Ruby Integer succ()用法及代碼示例


Ruby中的succ函數返回數字的直接後繼,即返回數字+1。如果使用浮點值,則拋出錯誤消息。

用法:number.next  

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


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

範例1:

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

輸出

101
18
-89
-28

例子2

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

輸出

20
-16
-17
17


相關用法


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