[Ruby]joinメソッドで配列内の値を加算を求める
書式
eval 配列名.join(“+")
使用例
#!/usr/bin/ruby #クラスSampleの定義 class Sample #文字列を出力 def testFunc cft=[4,5,6,7,8] p cft.join("+") p eval cft.join("+") end end #インスタンスを作成 cft = Sample.new # testFuncを呼び出す cft.testFunc
実行結果
30
Coding Changes the World
書式
eval 配列名.join(“+")
使用例
#!/usr/bin/ruby #クラスSampleの定義 class Sample #文字列を出力 def testFunc cft=[4,5,6,7,8] p cft.join("+") p eval cft.join("+") end end #インスタンスを作成 cft = Sample.new # testFuncを呼び出す cft.testFunc
実行結果
30