判断 java 数组中是否存在一定值的方法:1. 使用 for 循环数组;2. 使用 arrays.binarysearch() 方法;3. 使用 set 集合;4. 使用 stream api。
如何判断 Java 数组中是否存在某个值?
在 Java 判断数组中是否存在一定值的方法如下:
1. 使用 for 循环遍历数组:
public static boolean contains(int[] arr, int value) { for (int i = 0; i <p><strong>2. 使用 Arrays.binarySearch() 方法:</strong></p><p><span>立即学习</span>“<a href="https://pan.quark.cn/s/c1c2c2ed740f" style="text-decoration: underline !important; color: blue; font-weight: bolder;" rel="nofollow" target="_blank">Java免费学习笔记(深入)</a>”;</p><pre class="brush:php;toolbar:false">public static boolean contains(int[] arr, int value) { int index = Arrays.binarySearch(arr, value); return index >= 0; }
该方法适用于排序数组,效率更高。
3. 使用 Set 集合:
public static boolean contains(int[] arr, int value) { Set<integer> set = new HashSet(); for (int i : arr) { set.add(i); } return set.contains(value); }</integer>
该方法适用于去重数组,效率高。
4. 使用 Stream API:
public static boolean contains(int[] arr, int value) { return Arrays.stream(arr).anyMatch(i -> i == value); }
该方法简单高效,适用于 Java 8 还有更高的版本。
以上是java数组判断是否有一定值的详细内容。请关注图灵教育的其他相关文章!