如何将哈希映射转换为方法

时间:2013-11-25 18:45:58

标签: java methods

我有这个地图将字符串转换为iso2代码

这是代码

Map<String, String> countries = new HashMap<String, String>();
        for (String iso : Locale.getISOCountries()) {
            Locale l = new Locale("", iso);
            countries.put(l.getDisplayCountry(), iso);

我如何使用

countries.get("France")

但我希望它是一种方法,然后我会method("France"),然后它就能完成这项工作。

2 个答案:

答案 0 :(得分:0)

你怎么不知道怎么写方法?决定跳过教程?

public String myMethod(String country) {
    return countries.get(country);
}

答案 1 :(得分:0)

这是你想要的吗?

String method(String country)
{
    return countries.get(country);
}