📅  最后修改于: 2023-12-03 15:32:04.187000             🧑  作者: Mango
Shorts.indexOf(short[] array, short[] target)
方法是Google Guava库中的一个工具方法,用于在给定的short数组中查找目标short数组第一次出现的位置。如果未找到目标,则返回-1。
public static int indexOf(short[] array, short[] target)
以下示例演示如何使用Shorts.indexOf()
查找一个目标short数组在给定short数组的位置。
import com.google.common.primitives.Shorts;
public class ShortArrayExample {
public static void main(String[] args) {
short[] array = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
short[] target = {3, 4, 5};
int index = Shorts.indexOf(array, target);
System.out.println("Target found at index : " + index);
}
}
在上述示例中,我们创建了一个short数组和一个目标short数组。然后使用Shorts.indexOf()
方法查找目标short数组的位置。在本例中,目标short数组从索引2开始出现在给定的short数组中,因此输出应该是:
Target found at index: 2
使用Shorts.indexOf(short[] array, short[] target)
方法可以方便快捷地查找给定short数组中第一次出现目标short数组的位置。该方法对于需要查找short数组的应用程序是很有用的。