您的位置 首页 java

java判断数组是否包含某个元素

一:使用List

public static boolean useList(String[] arr, String targetValue) {  return Arrays.asList(arr).contains(targetValue);}

二:使用Set

public static boolean useSet(String[] arr, String targetValue) {  Set<String> set = new HashSet<String>(Arrays.asList(arr));  return set.contains(targetValue);}

三:使用循环判断

public static boolean useLoop(String[] arr, String targetValue) {  for(String s: arr){    if(s.equals(targetValue))      return true;  }  return false;}

四:使用Arrays.binarySearch()

Arrays.binarySearch()方法只能用于有序数组!!!如果数组无序的话得到的结果就会很奇怪。

查找有序数组中是否包含某个值的用法如下:

public static boolean useArraysBinarySearch(String[] arr, String targetValue) {   int a = Arrays.binarySearch(arr, targetValue);  if(a > 0)    return true;  else    return false;}

推荐教程:java快速入门

文章来源:智云一二三科技

文章标题:java判断数组是否包含某个元素

文章地址:https://www.zhihuclub.com/16502.shtml

关于作者: 智云科技

热门文章

网站地图