1. ホーム
  2. ruby

[解決済み] 変数が整数であるかどうかのチェック

2022-03-04 10:04:49

質問

Rails 3 または Ruby には、変数が整数であるかどうかを確認する方法が組み込まれていますか?

例えば

1.is_an_int #=> true
"[email protected]".is_an_int #=> false?

解決方法は?

を使用することができます。 is_a? メソッド

>> 1.is_a? Integer
=> true
>> "[email protected]".is_a? Integer
=> false
>> nil.is_a? Integer
=> false