Concatenate Multiple Strings in Java.



You can concatenate multiple strings using the ‘+’ operator of Java.

Example

public class Test {
   public static void main(String args[]) {
      String st1 = "Hello";
      String st2 = "How";
      String st3 = "You";
      String res = st1+st2+st3;
      System.out.println(res);
   }
}

Output

HelloHowYou

Advertisements