Category Archives: Uncategorized

As Java Developers we all have used ‘String Concatenation’ at some point. But do we actually have a proper understanding of what happens underneath? As Strings are immutable in Java, once a String is created, it cannot be changed. Hence when we concatenate one String with another, a new String is created. Thus if you […]