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.
.netから使用した機能をRubyでマッピングしようとしています
Rubyのようにc#.netジェネリックリストを作成するにはどうすればよいですか?
public class ClientList : List<Client> { }
Rubyは非常に動的な言語です。C#のような強力な型がないため、ジェネリックはありません(またはジェネリックが必要です)。
次のようにRubyでリストを作成できます。
list = []
http://langref.org/ruby/lists
class A end list = [] # create list << A.new # add
このようなもの?ここでリストは動的であり、任意のオブジェクトを追加できます。