Java 中 Ints contains() 函数


Ints 类的 contains() 函数用于检查某元素是否在数组中。

以下是语法 −

public static boolean
contains(int[] arr, int target)

在此处,arr 是要在其中检查元素的数组。target 是要检查的元素。

以下是一个实现 Ints 类 contains() 方法的示例 −

示例

import com.google.common.primitives.Ints;
import java.util.*;
class Demo {
   public static void main(String[] args) {
      int[] myArr1 = { 100, 150, 230, 300, 400 };
      int[] myArr2 = { 450, 550, 700, 800, 1000 };
      System.out.println("Array 1 = ");
      for(int i=0; i < myArr1.length; i++) {
         System.out.println(myArr1[i]);
      }
      System.out.println("Array 2 = ");
      for(int i=0; i < myArr2.length; i++) {
         System.out.println(myArr2[i]);
      }
      int[] arr = Ints.concat(myArr1, myArr2);
      System.out.println("Concatenated arrays = "+Arrays.toString(arr));
      if (Ints.contains(arr, 800))
         System.out.println("Element 800 is in the array!");
      else
         System.out.println("Element 800 is not in the array!");
   }
}

输出

Array 1 =
100
150
230
300
400
Array 2 =
450
550
700
800
1000
Concatenated arrays = [100, 150, 230, 300, 400, 450, 550, 700, 800, 1000]
Element 800 is in the array!

更新于:2019-09-23

4 千+ 次浏览

开启你的 职业生涯

完成课程取得认证

开始
广告