2009-01-31 1行で変数セット ruby class Test def initialize(a,b,c) @a = a @b = b @c = c end end と書くより↓と書いた方が綺麗 class Test def initialize(a,b,c) @a , @b , @c = a ,b ,c end end