java entryset_Java HashMap entrySet()方法与示例

java entryset_Java HashMap entrySet()方法与示例HashMap 类 entrySet 方法 HashMapClass method entrySet methodisavai utilpackage entrySet 方法在 java util 包中可用 entrySet methodisused key valuepairs th

HashMap类entrySet()方法 (HashMap Class entrySet() method)

entrySet() method is available in java.util package. entrySet()方法在java.util包中可用。 entrySet() method is used to return an entry (key-value pairs) that exists in this HashMap to be viewed in a Set. entrySet()方法用于返回此HashMap中存在的条目(键值对),以在Set中进行查看。 entrySet() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error. entrySet()方法是一个非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。 entrySet() method does not throw an exception at the time of returning entry set. 返回条目集时, entrySet()方法不会引发异常。

Syntax:

句法:

public Set entrySet();

Parameter(s):

参数:

It does not accept any parameter. 它不接受任何参数。

Return value:

返回值:

The return type of the method is Set, it returns mappings exist in this HashMap to be viewed in a Set.

方法的返回类型为Set ,它返回此HashMap中存在的映射以在Set中进行查看。

Example:

例:

// Java program to demonstrate the example

// of Set entrySet() method of HashMap

import java.util.*;

public class EntrySetOfHashMap {

public static void main(String[] args) {

// Instantiates a HashMap object

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

// By using put() method is to add

// key-value pairs in a HashMap

map.put(10, “C”);

map.put(20, “C++”);

map.put(50, “JAVA”);

map.put(40, “PHP”);

map.put(30, “SFDC”);

// Display HashMap

System.out.println(“HashMap: ” + map);

// By using entrySet() method is to

// return the entry exists in this

// HashMap to be viewed in a Set

Set s = map.entrySet();

// Display set view

System.out.print(“map.entrySet(): “);

System.out.println(s);

}

}

Output

输出量

HashMap: {50=JAVA, 20=C++, 40=PHP, 10=C, 30=SFDC}

map.entrySet(): [50=JAVA, 20=C++, 40=PHP, 10=C, 30=SFDC]

翻译自: https://www.includehelp.com/java/hashmap-entryset-method-with-example.aspx

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/231411.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号