I recently discovered that the java.lang.String.substring method does not return a new string, but a view of the original string that was substringed. This can have memory implications. For example, if you're reading an ascii file, and parsing tokens in the file using substring and storing the result of substring in memory somewhere -- what you're actually storing in memory is the entire string prior to the substring operation! You can of course solve this by wrapping substring in your own version that returns a new string of the subtring result.
|
closed as not a real question by chaos, John T, paxdiablo, Bombe, Tom Hawtin - tackline Jun 24 '09 at 8:37
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
I've been bitten by it once, reading a dictionary file line by line. Each line was very short, but the buffer created by That was when I first learned the point of writing:
Most of the time it's not a problem though - and of course it can be more efficient than the "take a completely separate copy" approach. |
|||||||||
|
|
In the year 2000 or 2001, one of the early What is really annoying is that if a write
IntelliJ IDEA warns me that this is redundant! Stupid IDE. |
|||
|
|
http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html In the java docs, it states that the substring method does return a new string. Or did I misunderstand the question? Also, strings are immutable. Here's a SO thread that explains why that is so. |
|||||
|