⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 e345. listing the elements of a collection.txt

📁 这里面包含了一百多个JAVA源文件
💻 TXT
字号:
This example demonstrates how to iterate over the elements of various types of collections. 
    // For a set or list
    for (Iterator it=collection.iterator(); it.hasNext(); ) {
        Object element = it.next();
    }
    
    // For keys of a map
    for (Iterator it=map.keySet().iterator(); it.hasNext(); ) {
        Object key = it.next();
    }
    
    // For values of a map
    for (Iterator it=map.values().iterator(); it.hasNext(); ) {
        Object value = it.next();
    }
    
    // For both the keys and values of a map
    for (Iterator it=map.entrySet().iterator(); it.hasNext(); ) {
        Map.Entry entry = (Map.Entry)it.next();
        Object key = entry.getKey();
        Object value = entry.getValue();
    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -