StringBuffer

StringBuffer class in java is used to create thread safe mutable string. Mutable string means we can modify the string as many times as we want without creating a new string for each modification. This way we can save lot of memory. We know that String is immutable, when we do lot of modification to […]

Share this article on