java treemap_Java TreeMap keySet()方法与示例

java treemap

TreeMap类的keySet()方法 (TreeMap Class keySet() method)

  • keySet() method is available in java.util package.

    keySet()方法在java.util包中可用。

  • keySet() method is used to return a set of keys that exists in this TreeMap to be viewed in a Set.

    keySet()方法用于返回此TreeMap中存在的一组键,以便在Set中进行查看。

  • keySet() 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.

    keySet()方法是一种非静态方法,只能通过类对象访问,如果尝试使用类名访问该方法,则会收到错误消息。

  • keySet() method does not throw an exception at the time of returning the key set.

    返回键集时, keySet()方法不会引发异常。

Syntax:

句法:

    public Set keySet();

Parameter(s):

参数:

  • It does not accept any parameter.

    它不接受任何参数。

Return value:

返回值:

The return type of the method is Set, it returns contained set of keys in this TreeMap to be viewed in a Set.

方法的返回类型为Set ,它返回此TreeMap中包含的键集,以在Set中查看。

Example:

例:

// Java program to demonstrate the example 
// of Set keySet() method of TreeMap 
import java.util.*;
public class KeySetOfTreeMap {
public static void main(String[] args) {
// Instantiates TreeMap
TreeMap < Integer, String > tm = new TreeMap < Integer, String > ();
// By using put() method is
// to put the key-value pairs in
// treemap tm
tm.put(1, "C");
tm.put(4, "C++");
tm.put(3, "Java");
tm.put(2, "Php");
// Display TreeMap tm
System.out.println("tm: " + tm);
// By using keySet() method is to
// return the set of keys to be
// viewed in a Set
Set s = tm.keySet();
// Display set view of TreeMap
System.out.println("tm.keySet(): " + s);
}
}

Output

输出量

tm: {1=C, 2=Php, 3=Java, 4=C++}
tm.keySet(): [1, 2, 3, 4]

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

java treemap

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/541117.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

mysql简单部署_安装部署Mysql实例(最简单快速噢)

题外话作为Mysql DBA&#xff0c;我们平时必须要熟练的一个最最基础的技能&#xff0c;即安装部署Mysql实例&#xff0c;所以本文分享一个快速安装部署Mysql实例的方法。一、环境介质准备Mysql安装包准备服务器准备我这里使用的是centos 7.x&#xff0c;此方法适用于任何其他li…

zabbix增加手机端4个url地址的返回值

由同事提供4个需要监控的url地址GET类型&#xff1a;http://10.15.24.61:809/UserCenterService.svc/getAccountInfo/563/9638POST类型&#xff1a;http://10.15.24.61:809/ProductService/userInvestVarietyYjsList/4/0/563/1/9638/1.0http://10.15.24.61:809/ProductService/…

java timezone_Java TimeZone setID()方法与示例

java timezoneTimeZone类的setID()方法 (TimeZone Class setID() method) setID() method is available in java.util package. setID()方法在java.util包中可用。 setID() method is used to set the id of this TimeZone. setID()方法用于设置此TimeZone的ID。 setID() metho…

iis php mysql 集成_如何在IIS上集成php(iis+mysql+php+zend)

下面介绍下如何在IIS上集成php、这里我就不说cgi了&#xff0c;因为cgi需要系统权限过高&#xff0c;不建议虚拟主机使用&#xff0c;而且cgi程序也很少有人用到&#xff0c;楼主说的要iis6.0结合php安装需要&#xff1a;windows2003系统 安装有IIS6.0php-5.1.1-Win32.zipmysql…

微信红包促销系统开发

如今&#xff0c;互联网的普及&#xff0c;借助网络&#xff0c;营销更加方便。已经有商家开始与我们合作开发新推出的微信二维码红包促销活动了&#xff0c;不仅能达到活动气氛还能进行防伪&#xff0c;同时还可以给自己的公众号沉淀粉丝。微信红包促销系统开发—— 张小龙作为…

hashmap示例_Java HashMap remove()方法与示例

hashmap示例HashMap类的remove()方法 (HashMap Class remove() method) remove() method is available in java.util package. remove()方法在java.util包中可用。 remove() method is used to remove the key-value pairs that exist in this HashMap for the given key eleme…

mysql 中有行号吗_重置SQLite3 / MySQL中的行号计数

sqlite的使用&#xff1a;DELETE FROM your_table;DELETE FROM sqlite_sequence WHERE name your_table;sqlite keeps track of the largest ROWID that a table has ever held using the special sqlITE_SEQUENCE table. The sqlITE_SEQUENCE table is created and initializ…

『科学计算』科学绘图库matplotlib练习

思想&#xff1a;万物皆对象 作业 第一题&#xff1a; import numpy as np import matplotlib.pyplot as pltx [1, 2, 3, 1] y [1, 3, 0, 1]def plot_picture(x, y):plt.plot(x, y, colorr, linewidth2, linestyle--, markerD, labelone)plt.xticks(list(range(-5,5,1)))plt.…

Java BigDecimal min()方法与示例

BigDecimal Class max()方法 (BigDecimal Class max() method) max() method is available in java.math package. max()方法在java.math包中可用。 max() method is used to return the least value of (this BigDecimal) and the given (BigDecimal ob). max()方法用于返回(t…

mysql下载64位 csdn_Linunx-CentOS7安装mysql-5.7.23-linux-glibc2.12-x86_64.tar

2. Linux下安装Mysql2.2 将下载好的mysql安装包通过xftp上传到虚拟机上。2.3 将安装包移动到/usr/local路径下#mv mysql-5.7.23-linux-glibc2.12-x86_64.tar.gz /usr/local2.4 解压安装包#tar -zxvf mysql-5.7.23-linux-glibc2.12-x86_64.tar.gz2.5 重命名解压文件或者是建立软…

tempdb 相关总结

/* -- 0. 高速压缩tempdb为初始值 USE tempdb DBCC SHRINKFILE(2,TRUNCATEONLY); */-- 1. tempdb以下未回收的暂时表 ,某些版本号可能查不到数据 use tempdb; select * from sys.objects o where o.type like %U%;-- Chapter 7 - Knowing Tempdb -- christiancoeo.com-- Show t…

java calendar_Java Calendar after()方法与示例

java calendarCalendar类after()方法 (Calendar Class after() method) after() method is available in java.util package. after()方法在java.util包中可用。 after() method is used to check whether this calendar time is after the time denoted by the given Objects …

rust拆掉墙_rust怎么拆自己的墙

rust游戏中可以建造自己的家&#xff0c;但是当建墙的时候总会觉得摆放不好&#xff0c;所以就需要拆除&#xff0c;但是要怎么拆自己的墙呢&#xff0c;下面小编就来为大家介绍一下吧&#xff01;rust怎么拆自己的墙要先放上领地柜&#xff0c;然后在墙刚建好的几分钟内锤子右…

Java BigDecimal add()方法与示例

BigDecimal类的add()方法 (BigDecimal Class add() method) Syntax: 句法&#xff1a; public BigDecimal add(BigDecimal val);public BigDecimal add(BigDecimal val, MathContext ma_co);add() method is available in java.math package. add()方法在java.math包中可用。 …

Analytics API and Customer Data Platform | Segment

Analytics API and Customer Data Platform | Segment

sheets.add示例_Java ArrayDeque add()方法与示例

sheets.add示例ArrayDeque类add()方法 (ArrayDeque Class add() method) add() Method is available in java.lang package. add()方法在java.lang包中可用。 add() Method is used to add the given element at the end of the deque. add()方法用于在双端队列的末尾添加给定元…

arcgis出界址点成果表_界址点成果表打印

#coding: UTF-8importarcpyimportosimporttypesimportstringimportshutilimportsysimportreimportopenpyxl#ws是一个xls的工作表#mode是替换模型&#xff0c;1完全替换&#xff0c;2模糊替换&#xff0c;3 追加替换defreplacexls(ws,mode, text, replaceText):rowsws.max_rowco…

基于Kubernetes的分布式压力测试方案

压力测试是用来检测系统承载能力的有效手段。在系统规模较小的时候&#xff0c;在一台空闲的服务器上使用[ab]&#xff0c;[wrk]&#xff0c;[siege]等工具发起一定量的并发请求即可得到一个初步的测试结果。但在系统复杂度逐步提高&#xff0c;特别是引入了负载均衡&#xff0…

旋转数组 java_数组中左旋转的Java程序

旋转数组 javaLet’s take an array a[3,4,5,1,0] here we can see after 1 rotation the position of the array element will be a [4,5,1,0,3], after 2 left rotations a[5,1,0,3,4] and so on hence we can see after d rotation the position of the ith element will be…

The output path is not specified for module XXX

新建项目启动时候&#xff1a;The output path is not specified for module XXX 没有为模块XXX指定输出路径。 解决方案 第一步 第二步 第三步