转自:
Java之HashMap中putIfAbsent()方法具有什么功能呢?
下文讲述Java代码中putIfAbsent()方法的功能简介说明
putIfAbsent()方法的功能
putIfAbsent()方法:
用于向HashMap中传入元素
putIfAbsent()方法语法: hashmap.putIfAbsent(K key, V value) --------说明------- hashmap:待操作的HashMap对象 参数说明: key:键 value:值 返回值说明: 当所指定key已存在HashMap中时, 则返回同key值对应的value, 当指定的key不存在于HashMap中时,则返回null
例:
putIfAbsent()方法的示例分享
package com.java265; import java.util.HashMap; public class testMain { /* * java265.com HashMap之putIfAbsent方法的示例 */ public static void main(String[] args) { HashMapobjectName = new HashMap (); objectName.putIfAbsent(11, "Java265.com"); objectName.putIfAbsent(88, "Java爱好者"); objectName.putIfAbsent(100, "Java网站"); objectName.putIfAbsent(77, "Java265.com-2"); objectName.putIfAbsent(100, "Java网站=2"); System.out.println(objectName); } } -----运行以上代码,将输出以下信息------- {100=Java网站, 88=Java爱好者, 11=Java265.com, 77=Java265.com-2}