Shorts.indexOf(short[] array, short[] target) method of Guava’s Shorts Class accepts two parameters array and target. If the target exists within the array, the method returns the start position of its first occurrence. If the target does not exist within the array, the method returns -1.
Syntax:
public static int indexOf(short[] array, short[] target)
Parameters: The method accepts two parameters:
- array: which is the integer array in which the target array is to checked for index.
- target: which is the array to be searched for as a sub-sequence of specified array.
Return Value: The method returns an integer value as follows:
- It returns the start position of first occurrence of the target if the target array exists in the array.
- Else it returns -1 if the target does not exist in the array.
Exceptions: The method does not throw any exception.
Below examples illustrate the implementation of above method:
Example 1:
import com.google.common.primitives.Shorts;
import java.util.Arrays;
class GFG {
public static void main(String[] args)
{
short [] arr = { 1 , 2 , 3 , 4 , 3 , 5 };
short [] target = { 3 , 4 , 3 };
System.out.println( "Array: "
+ Arrays.toString(arr));
System.out.println( "Target Array: "
+ Arrays.toString(target));
int index = Shorts.indexOf(arr, target);
if (index != - 1 ) {
System.out.println( "Target is present at index "
+ index);
}
else {
System.out.println( "Target is not present "
+ "in the array" );
}
}
}
|
Output:
Array: [1, 2, 3, 4, 3, 5]
Target Array: [3, 4, 3]
Target is present at index 2
Example 2:
import com.google.common.primitives.Shorts;
import java.util.Arrays;
class GFG {
public static void main(String[] args)
{
short [] arr = { 3 , 5 , 7 , 11 , 13 };
short [] target = { 23 , 37 };
System.out.println( "Array: "
+ Arrays.toString(arr));
System.out.println( "Target Array: "
+ Arrays.toString(target));
int index = Shorts.indexOf(arr, target);
if (index != - 1 ) {
System.out.println( "Target is present at index "
+ index);
}
else {
System.out.println( "Target is not present"
+ " in the array" );
}
}
}
|
Output:
Array: [3, 5, 7, 11, 13]
Target Array: [23, 37]
Target is not present in the array
Reference: https://google.github.io/guava/releases/23.0/api/docs/com/google/common/primitives/Shorts.html#indexOf-short:A-short:A-
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
06 Nov, 2019
Like Article
Save Article