Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I just want to read it as its own "String" but a view is fine -- I don't need it to be materialized as a separate object. I'd prefer to not incur the overhead of creating a new object.

share|improve this question
2  
What overhead? Don't assume there is one until you see evidence for it. – skaffman Aug 25 '11 at 21:52
Don't micro optimise unless you have solid stats that tell you that it is an overhead that you cannot accept. – Preet Sangha Aug 25 '11 at 21:53
4  
In addition, aren't the results of substring (and most/all of the other string operations) backed by the same char array? – Clockwork-Muse Aug 25 '11 at 21:55
1  
Yes, they are. The new String object has it's own values for offset and length but uses the same char[]. – f1sh Aug 25 '11 at 23:22

3 Answers

You can access the characters one by one with the charAt() method. If you already have a character array allocated, you could copy the characters into it, and use that. Neither of these would involve creating any more objects. But that's about it.

Note that if you call substring(), the String class doesn't copy the underlying char[] -- it only creates the new String object itself, and they share the char[].

share|improve this answer
1  
Using the char[] would be the answer if a String object is not required for whatever he is doing. – djangofan Aug 25 '11 at 21:57

No, the String object is immutable.

share|improve this answer

The only thing I could think of is setting it to the same variable that it originally was.

Ex:

var aString = "test";
aString = aString.substring(2);
share|improve this answer
I guess the question is about java not javascript/ecmascript – Emmanuel Devaux Aug 25 '11 at 21:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.