NicolaBernini / CodingChallengesSolutions

CPP Code Snippets with comments
4 stars 4 forks source link

Java Basic #1

Open NicolaBernini opened 5 years ago

NicolaBernini commented 5 years ago

Overview

Java Basic Elements

NicolaBernini commented 5 years ago

Strings

String Concatenation

The String can be concatenated with the + operator

Example

    String a = "Hi "; 
    String b = "there"; 
    System.out.println(a+b);