show/hide this revision's text 3 sp

Either way is fine. You are not mutating the original object in either of the two methods.

If you call string.substring(0, string.length()), there is no reason why the original string cannot be returned.

The only contract you sigh sign with immutability is that once an object is created, it doesn't change.

show/hide this revision's text 2 more info

Either way is fine. You are not mutating the original object in either wayof the two methods.

If you call string.substring(0, string.length()), there is no reason why the original string cannot be returned.

The only contract you sigh with immutability is that once an object is created, it doesn't change.

show/hide this revision's text 1

Either way is fine. You are not mutating the original object either way.