Saturday, December 13, 2025
HomeLanguagesJavaJava Guava | Shorts.join() method with Examples

Java Guava | Shorts.join() method with Examples

Shorts.join() is a method of Shorts class in Guava library which returns a combined string of all the given short values separated by separator. For example, join(“-“, (short) 1, (short) 2, (short) 3) returns the string “1-2-3”.

Syntax :

public static String join(String separator,
                          short... array)

Parameters :

  • separator : The text that should appear between consecutive values in the resulting string (but not at the start or end).
  • array : An array of short values, possibly empty.

Return Value: A string containing the supplied short values separated by separator.

Example-1:




// Java code to show implementation of
// Guava's Shorts.join() method
import com.google.common.primitives.Shorts;
import java.util.Arrays;
  
class GFG {
    // Driver's code
    public static void main(String[] args)
    {
        // Creating a short array
        short[] arr = { 2, 4, 6, 8, 10 };
  
        // Using Shorts.join() method to get a
        // string containing the elements of array
        // separated by a separator
        System.out.println(Shorts.join("#", arr));
    }
}


Output:

2#4#6#8#10

Example-2:




// Java code to show implementation of
// Guava's Shorts.join() method
import com.google.common.primitives.Shorts;
import java.util.Arrays;
  
class GFG {
    // Driver's code
    public static void main(String[] args)
    {
        // Creating a short array
        short[] arr = { 3, 5, 7, 9, 11 };
  
        // Using Shorts.join() method to get a
        // string containing the elements of array
        // separated by a separator
        System.out.println(Shorts.join("*", arr));
    }
}


Output:

3*5*7*9*11

Reference: https://google.github.io/guava/releases/23.0/api/docs/com/google/common/primitives/Shorts.html#join-java.lang.String-short…-

RELATED ARTICLES

Most Popular

Dominic
32446 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6814 POSTS0 COMMENTS
Nicole Veronica
11952 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12030 POSTS0 COMMENTS
Shaida Kate Naidoo
6949 POSTS0 COMMENTS
Ted Musemwa
7200 POSTS0 COMMENTS
Thapelo Manthata
6897 POSTS0 COMMENTS
Umr Jansen
6882 POSTS0 COMMENTS