string
Basics about String (java.lang.String)
I guess this thing is non-avoidable when you are working in Java. Just trying to note down some very basic things about it. Took help of Java API Strings are constant; their values cannot be changed after they are created. Applying a method on a String will create a new string. When you assign one [...]
