Java HashMap isEmpty()方法
java.util.HashMap.isEmpty() 如果Map不包含元素,则用于返回true。
1 语法
public boolean isEmpty()
2 参数
无
3 返回值
如果此映射不包含键值映射,则方法调用返回true。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.HashMap.isEmpty()方法的例子
*/
import java.util.*;
public class Demo {
public static void main(String args[]) {
// create hash map
HashMap newmap = new HashMap();
// populate hash map
newmap.put(1, "tutorials");
newmap.put(2, "point");
newmap.put(3, "is best");
// check if map is empty
boolean val = newmap.isEmpty();
// check the boolean value
System.out.println("Is hash map empty: " + val);
}
}
输出结果为:
Is hash map empty: false
热门文章
优秀文章