+1 vote
in JAVA by

What’s the difference between String and String Builder class in java?

1 Answer

0 votes
by

What’s the difference between String and String Builder class in java?

1) Strings are immutable while string Builder class is mutable. The string builder class is also synchronized.

...