色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

isempty函數(shù)用法

林雅南2年前30瀏覽0評論

isempty函數(shù)用法?

isEmpty函數(shù)作用:

用于判斷某種容器是否有元素

類型:計算機編程語言

在Java中,可以用isEmpty();判斷一個順序容器ArrayList里面是否有元素,如果有的話返回一個Boolean類型的值false,否則返回true。(Returnstrueif this list contains no elements.)

import java.util.ArrayList;//在此處引入ArrayList所在的庫

ArrayList<Integer> a = new ArrayList<Integer>();

System.out.println(a.isEmpty());//打印出true

a.add(5);

System.out.println(a.isEmpty());//打印出false

類似的,可以用來判斷HashSet或者HashMap等容器是否有元素。

java中this用法,isempty函數(shù)用法