如何在jruby中传递类类型参数

时间:2013-10-09 22:02:08

标签: java jruby

说我需要在jruby中翻译以下Java代码:

Map<String, Integer> topicCountMap = new HashMap<String, Integer>();

在jruby中,没有类型参数,它看起来像这样:

topic_count_map = HashMap.new

但是我如何传递类型参数?

1 个答案:

答案 0 :(得分:1)

你没有。 JRuby

中未指定类型参数
topic_count_map = HashMap.new
topic_count_map.put("foo", 100)
topic_count_map.get("foo")

阅读:JRuby Basics