Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ルビー配列は、以下を使用して初期化できます。
irb(main):01:0> Array[1,2,3] => [1, 2, 3]
自分のクラスでこの動作をエミュレートするにはどうすればよいですか?
[](*args)publicクラス メソッドを実装できます。
[](*args)
class Foo def self.[] *args new *args end # ... end