7
votes
Why can’t strings be mutable in Java and .NET?
One factor is that, if strings were mutable, objects storing strings would have to be careful to store copies, lest their internal data change without notice. Given that strings are a fairly primit …
