Skip to content

Instantly share code, notes, and snippets.

@adojos
Last active March 9, 2023 11:08
Show Gist options
  • Save adojos/33add72d31f14b0f89275cdd560f5cda to your computer and use it in GitHub Desktop.
Save adojos/33add72d31f14b0f89275cdd560f5cda to your computer and use it in GitHub Desktop.
Java: Concatenate Strings Using Plus Operator #java
private static void usingPlusOperator() {
String string1 = "Hello ";
String string2 = "World";
String result = string1+string2;
System.out.println(result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment