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


Ruby Numeric real()用法及代碼示例


real()是Ruby中的內置方法,返回給定數字的實部。

用法: num.real()

參數:該函數需要返回其實部的數字。


返回值:返回複數的實數部分。

例子1

# Ruby program for real() 
# method in Numeric 
  
# Initialize a number  
num = Complex(10, 6) 
  
# Prints the real part 
puts num.real()

輸出

10

例子2

# Ruby program for real() 
# method in Numeric 
  
# Initialize a number  
num = Complex(18, 16) 
  
# Prints the real part 
puts num.real()

輸出

18


相關用法


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