Ruby數(shù)據(jù)類型轉(zhuǎn)換的方法是什么

小樊
81
2024-11-05 21:00:29

在Ruby中,有多種方法可以將數(shù)據(jù)類型進(jìn)行轉(zhuǎn)換

  1. 整數(shù)轉(zhuǎn)浮點(diǎn)數(shù):使用 to_f 方法。
integer = 42
float = integer.to_f
puts float # 輸出 42.0
  1. 浮點(diǎn)數(shù)轉(zhuǎn)整數(shù):使用 to_i 方法。
float = 42.0
integer = float.to_i
puts integer # 輸出 42
  1. 字符串轉(zhuǎn)整數(shù):使用 to_i 方法。
string = "42"
integer = string.to_i
puts integer # 輸出 42
  1. 字符串轉(zhuǎn)浮點(diǎn)數(shù):使用 to_f 方法。
string = "42.0"
float = string.to_f
puts float # 輸出 42.0
  1. 布爾值轉(zhuǎn)整數(shù):使用 to_i 方法,將 true 轉(zhuǎn)換為 1,將 false 轉(zhuǎn)換為 0。
boolean = true
integer = boolean.to_i
puts integer # 輸出 1
  1. 布爾值轉(zhuǎn)浮點(diǎn)數(shù):使用 to_f 方法,將 true 轉(zhuǎn)換為 1.0,將 false 轉(zhuǎn)換為 0.0。
boolean = true
float = boolean.to_f
puts float # 輸出 1.0
  1. 數(shù)組轉(zhuǎn)字符串:使用 join 方法。
array = [1, 2, 3]
string = array.join
puts string # 輸出 "123"
  1. 數(shù)組轉(zhuǎn)整數(shù):使用 mapto_i 方法。
array = ["1", "2", "3"]
integers = array.map(&:to_i)
puts integers # 輸出 [1, 2, 3]

這些僅是Ruby中數(shù)據(jù)類型轉(zhuǎn)換的一些基本方法。根據(jù)實(shí)際需求,你可能需要使用其他方法進(jìn)行更復(fù)雜的類型轉(zhuǎn)換。

0