Android 摆脱两个警告

发布于 2024-12-26 22:58:49 字数 914 浏览 0 评论 0 原文

我正在学习如何使用 HashMaps,

我的测试项目正在运行,但我需要摆脱一些警告,

public static void main() {


    Map <String, String>mMap = new HashMap<String, String>(); //crea nuevo HashMap
    mMap.put("llave 1", "la llave uno"); //le mete cosas al hashMap
    mMap.put("llave 2", "la llave dos");
    mMap.put("llave 3", "la llave tres");
    mMap.put("llave 4", "la llave cuatro");

    Iterator iter = mMap.entrySet().iterator();

    while (iter.hasNext()) {
         Map.Entry menEntry = (Map.Entry) iter.next();

         Log.d("msg", "key:"+menEntry.getKey() +" value:"+menEntry.getValue());
    } } }

等等

迭代器 iter = mMap.entrySet().iterator();

我收到警告:此行有多个标记自动完成指向迭代器这是什么,强制转换?,错误?,在那里放什么?

也有同样的警告:

Map.Entry menEntry = (Map.Entry) iter.next();

多谢!

I am learning how to use HashMaps,

my test project is working, but i need to get rid of some warnings,

public static void main() {


    Map <String, String>mMap = new HashMap<String, String>(); //crea nuevo HashMap
    mMap.put("llave 1", "la llave uno"); //le mete cosas al hashMap
    mMap.put("llave 2", "la llave dos");
    mMap.put("llave 3", "la llave tres");
    mMap.put("llave 4", "la llave cuatro");

    Iterator iter = mMap.entrySet().iterator();

    while (iter.hasNext()) {
         Map.Entry menEntry = (Map.Entry) iter.next();

         Log.d("msg", "key:"+menEntry.getKey() +" value:"+menEntry.getValue());
    } } }

so on

Iterator iter = mMap.entrySet().iterator();

i get the warning: multiple markers at this line the autocompletition point to Iterator <E> what is this, the cast?, Error?, what to put in there?

also same warning in:

Map.Entry menEntry = (Map.Entry) iter.next();

Thanks a lot!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦里泪两行 2025-01-02 22:58:49

这是因为您没有在几个地方定义类型,即

Iterator<Entry<String, String>> iter = mMap.entrySet().iterator(); 

 Map.Entry<String, String> menEntry = (Map.Entry<String, String>) iter.next();

编辑

您可以查看 JAVA 1.5 中的泛型,here 对此有一个小解释。

Its because you are not defining the type at couple of place, that is

Iterator<Entry<String, String>> iter = mMap.entrySet().iterator(); 

and

 Map.Entry<String, String> menEntry = (Map.Entry<String, String>) iter.next();

Edit

You can have a look at Generics in JAVA 1.5, here is a small explanation for that.

一梦浮鱼 2025-01-02 22:58:49

此警告表明您使用了更好参数化的类。使用 Iterator >Map.Entry

This warnings show that you use classes, that will be better to parameterize. use Iterator <Entry<String, String>> and Map.Entry<String, String>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文