在Ruby中,有多種方法可以將數(shù)據(jù)類型進(jìn)行轉(zhuǎn)換
to_f
方法。integer = 42
float = integer.to_f
puts float # 輸出 42.0
to_i
方法。float = 42.0
integer = float.to_i
puts integer # 輸出 42
to_i
方法。string = "42"
integer = string.to_i
puts integer # 輸出 42
to_f
方法。string = "42.0"
float = string.to_f
puts float # 輸出 42.0
to_i
方法,將 true
轉(zhuǎn)換為 1,將 false
轉(zhuǎn)換為 0。boolean = true
integer = boolean.to_i
puts integer # 輸出 1
to_f
方法,將 true
轉(zhuǎn)換為 1.0,將 false
轉(zhuǎn)換為 0.0。boolean = true
float = boolean.to_f
puts float # 輸出 1.0
join
方法。array = [1, 2, 3]
string = array.join
puts string # 輸出 "123"
map
和 to_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)換。