在Ruby中,數據類型轉換可以通過多種方式進行簡化。以下是一些常用的方法:
使用to_s
和to_i
方法:
to_s
方法將對象轉換為字符串,to_i
方法將對象轉換為整數。例如:
num = 42
str = num.to_s
int = num.to_i
使用String#to_i
和Integer#to_s
方法:
這些方法分別將字符串轉換為整數和將整數轉換為字符串。例如:
str = "42"
int = str.to_i
new_str = int.to_s
使用Float
和Integer
方法:
Float
方法將對象轉換為浮點數,Integer
方法將浮點數轉換為整數。例如:
num = 42.5
float = num.to_f
int = float.to_i
使用Boolean
方法:
Boolean
方法將對象轉換為布爾值。例如:
true_value = true.to_b
false_value = false.to_b
使用Array#map
和Hash#transform_values
方法:
這些方法可以用于批量轉換數據類型。例如,將數組中的所有字符串轉換為整數:
arr = ["1", "2", "3"]
int_arr = arr.map(&:to_i)
將哈希中的所有值轉換為字符串:
hash = { a: 1, b: 2, c: 3 }
str_hash = hash.transform_values(&:to_s)
通過使用這些方法,您可以簡化Ruby中的數據類型轉換流程。