Java Strings

Java String

A String represents a sequence of characters. In Java, strings are objects just like any other object. One interesting point about String in java is that it is immutable. Immutable means a string cannot be changed or modified once created. We will look at the immutability later in the post, don’t let us forget about

Java String Read More »