java treemap

TreeMap类lastKey()方法 (TreeMap Class lastKey() method)

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

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

  • lastKey() method is used to return the last highest key element value exists in this TreeMap.

    lastKey()方法用于返回此TreeMap中存在的最后一个最高键元素值。

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

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

  • lastKey() method may throw an exception at the time of returning the last highest key-value element.

    返回最后一个最高键值元素时, lastKey()方法可能会引发异常。

    NoSuchElementException: This exception may throw when this TreeMap is blank.

    NoSuchElementException :如果此TreeMap为空白,则可能引发此异常。

Syntax:

句法:

    public Key lastKey();

Parameter(s):

参数:

  • It does not accept any parameter.

    它不接受任何参数。

Return value:

返回值:

The return type of the method is Key, it retrieves the last higest key element exists in this TreeMap.

方法的返回类型为Key ,它检索此TreeMap中存在的最后一个higest key元素。

Example:

例:

// Java program to demonstrate the example
// of Key lastKey() method of TreeMap
import java.util.*;
public class LastKeyOfTreeMap {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 lastKey() method is
// used to return the key element
// linked with the largest key element
// value i.e. 4
// Display Returned Key Element
System.out.println("tm.lastKey(): " + tm.lastKey());
}
}

Output

输出量

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

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

java treemap

java treemap_Java TreeMap lastKey()方法与示例相关推荐

  1. java treemap lastkey,java.util.TreeMap.higherKey()方法实例

    全屏 higherKey(K key)方法用于返回最近键严格小于给定键,或null,如果不存在这样的键 声明 以下是java.util.TreeMap.higherKey()方法的声明.public  ...

  2. java散列法的运用实例,Java HashMap compute() 使用方法及示例

    Java HashMap compute() 使用方法及示例 Java HashMap compute()方法计算一个新值,并将其与哈希映射中的指定键相关联. compute()方法的语法为: has ...

  3. math的用法在java中的使用,Java Math cbrt() 使用方法及示例

    Java Math cbrt() 使用方法及示例 Java Math cbrt()方法返回指定数字的立方根. cbrt()方法的语法为: Math.cbrt(double num) 注意:cbrt() ...

  4. java arraylist 方法返回值,Java ArrayList get() 使用方法及示例

    Java ArrayList get() 使用方法及示例 Java ArrayList get()方法返回指定位置存在的元素. get()方法的语法为: arraylist.get(int index ...

  5. java treemap_Java TreeMap size()方法与示例

    java treemap TreeMap类的size()方法 (TreeMap Class size() method) size() method is available in java.util ...

  6. java treemap_Java TreeMap putAll()方法与示例

    java treemap TreeMap类putAll()方法 (TreeMap Class putAll() method) putAll() method is available in java ...

  7. java treemap_Java TreeMap keySet()方法与示例

    java treemap TreeMap类的keySet()方法 (TreeMap Class keySet() method) keySet() method is available in jav ...

  8. java treemap_Java TreeMap HigherKey()方法与示例

    java treemap TreeMap类HigherKey()方法 (TreeMap Class higherKey() method) higherKey() method is availabl ...

  9. java treemap_Java TreeMap lastEntry()方法与示例

    java treemap TreeMap类的lastEntry()方法 (TreeMap Class lastEntry() method) lastEntry() method is availab ...

最新文章

  1. nginx 反向代理和负载均衡
  2. 在Linux中安装SEP Client
  3. shardingsphere启动的时候报错Property ‘sqlSessionFactory‘ or ‘sqlSessionTemplate‘ are required
  4. Python 字符串大小写转换
  5. 更新FreeBSD Ports的方法
  6. bzoj 1070: [SCOI2007]修车【最小费用最大流】
  7. 【英语】秋风吹---9月英语
  8. jQuery Mobile 高级设计模板
  9. LeetCode刷题——75. 颜色分类
  10. vue2.0路由(跳转和传参)经典介绍
  11. 20个命令行工具监控 Linux 系统性能
  12. java adt下载_Android ADT 离线下载操作步骤
  13. 超级外链SEO工具源码 可发9600条优质外链
  14. 人体颈椎神经分布图高清,颈椎部神经分布图高清
  15. H3C交换机的应用优势
  16. 哈佛学者:这3本英文名著,每天小读10分钟,英语level暴涨....
  17. PTA 7-2 评委打分
  18. 用计算机专业术语祝福,学习计算机知识必须懂得50个专业术语
  19. 安利一款报表工具,Smartbi解决了Excel做报表的痛点
  20. 详解在ubuntu上使用Jigdo下载debian镜像

热门文章

  1. HTML5常用标签及特殊字符表
  2. Vue脚手架搭建项目
  3. NodeJS中resolve添加地址无效
  4. 4 张动图解释为什么(什么时候)使用 Redux
  5. 子元素的margin-top会影响父元素
  6. js 实现文件导出、文件下载
  7. 【Python 19】BMR计算器3.0(字符串分割与格式化输出)
  8. python 打造一个sql注入脚本 (一)
  9. Scikit-Learn机器学习入门
  10. Android-Universal-Image-Loader三大组件DisplayImageOptions、ImageLoader、ImageLoaderConfiguration详解...