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)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • 相关性分析的五种方法有哪些_数据相关性分析

    相关性分析的五种方法有哪些_数据相关性分析相关分析(AnalysisofCorrelation)是网站分析中经常使用的分析方法之一。通过对不同特征或数据间的关系进行分析,发现业务运营中的关键影响及驱动因素。并对业务的发展进行预测。本篇文章将介绍5种常用的分析方法。在开始介绍相关分析之前,需要特别说明的是相关关系不等于因果关系。相关分析的方法很多,初级的方法可以快速发现数据之间的关系,如正相关,负相关或不相关。中级的方法可以对数据间关系的强弱进行度量,如完全相关,不完全相关等。高级的方法可以将数据间的关系转化为模型,并通过模型对未来的业.

    2025年5月27日
    4
  • 最大似然函数

    最大似然函数似然函数似然函数在给定参数的条件下就是观测到一组数据概率密度函数 连续分布 或概率聚集函数 离散分布 在统计学中 似然函数 likelihoodfu 通常简写为 likelihood 似然 是一个非常重要的内容 在非正式场合似然和概率 Probability 几乎是一对同义词 但是在统计学中似然和概率却是两个不同的概念 概率是在特定环境下某件事情发生的可能性 也就是结果没有产生之前依据环

    2025年10月10日
    3
  • 【zTree】zTree根据后台数据生成树并动态设置前面的节点复选框的选中状态

    【zTree】zTree根据后台数据生成树并动态设置前面的节点复选框的选中状态

    2022年3月8日
    131
  • Systemd 入门教程:命令篇 journalctl

    Systemd 入门教程:命令篇 journalctl五、日志管理Systemd统一管理所有Unit的启动日志。带来的好处就是,可以只用journalctl一个命令,查看所有日志(内核日志和应用日志)。日志的配置文件是/etc/systemd/journald.conf。journalctl功能强大,用法非常多。#查看所有日志(默认情况下,只保存本次启动的日志)$sudojournalctl#查看内核日志(不显示…

    2022年5月23日
    47
  • dispatch_once认识分析

    dispatch_once认识分析

    2022年1月5日
    45
  • 手把手教你如何将图片“嵌入”网页中

    手把手教你如何将图片“嵌入”网页中将图片“嵌入”网页中

    2022年5月27日
    81

发表回复

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

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