vote up 7 vote down star
1

While looking at online code samples, I have sometimes come across an assignment of a String constant to a String object via the use of the new operator.

For example:

String s;
...
s = new String("Hello World");

This, of course, compared to

s = "Hello World";

I'm not familiar with this syntax and have no idea what the purpose or effect would be. Since String constants typically get stored in the constant pool and then in whatever representation the JVM has for dealing with String constants, would anything even be allocated on the heap?

flag

70% accept rate

6 Answers

vote up 19 vote down check

The one place where you may need new String(String) is to force a substring to copy to a new underlying character array, as in

small=new String(huge.substring(10,20))

However, this behavior is unfortunately undocumented and implementation dependent.

I have been burned by this when reading large files (some up to 20 MiB) in and carving it into lines after the fact. I ended up with all the strings for the lines referencing the entire file. Unfortunately, that unintentionally leaked the entire array for the few lines I held on to for a longer time than processing the file - I was forced to use new String() to work around it.

The only implementation agnostic way to do this is:

small=new String(huge.substring(10,20).toCharArray());

This unfortunately must copy the array twice, once for toCharArray() and once in the String constructor.

There needs to be a documented way to get a new String by copying the chars of an existing one; or the documentation of String(String) needs to be improved to make it more explicit (there is an implication there, but it's rather vague and open to interpretation).

link|flag
vote up 6 vote down

Take a look at this blog post.

http://kjetilod.blogspot.com/2008/09/string-constructor-considered-useless.html

link|flag
Jeez, I wasn't aware of the fact that substring doesn't return a completely different object. That's bizarre. thanks! – Uri Dec 24 '08 at 4:06
Bizarre and very dependent on the implementation. It is interesting but may be dangerous. – Oscar Reyes Dec 24 '08 at 4:19
1  
Uri: Read through entire String class, it's enlightening. Substring is actually a constant-time operation! :) – Esko Dec 24 '08 at 9:46
vote up 1 vote down

The only time I have found this useful is in declaring lock variables:

private final String lock = new String("Database lock");

....

synchronized(lock)
{
    // do something
}

In this case, debugging tools like Eclipse will show the string when listing what locks a thread currently holds or is waiting for. You have to use "new String", i.e. allocate a new String object, because otherwise a shared string literal could possibly be locked in some other unrelated code.

link|flag
I think it's better to have use private static class Lock {}; private final Lock lock = new Lock();, as the class name shows up pretty much everywhere. However, it will cost you a couple of K, because HotSPot isn't that efficient. – Tom Hawtin - tackline Dec 24 '08 at 12:33
I can buy that. Maybe I'll give it a try next time. – Dave Ray Dec 26 '08 at 1:55
Object lock = new Object() does the same at all ;-) – Hardcoded Nov 26 at 13:57
vote up 1 vote down

Well, that depends on what the "..." is in the example. If it's a StringBuffer, for example, or a byte array, or something, you'll get a String constructed from the data you're passing.

But if it's just another String, as in new String("Hello World!"), then it should be replaced by simply "Hello World!", in all cases. Strings are immutable, so cloning one serves no purpose -- it's just more verbose and less efficient to create a new String object just to serve as a duplicate of an existing String (whether it be a literal or another String variable you already have).

In fact, Effective Java (which I highly recommend) uses exactly this as one of its examples of "Avoid creating unnecessary objects":


As an extreme example of what not to do, consider this statement:

String s = new String("stringette");  **//DON'T DO THIS!**


(Effective Java, Second Edition)

link|flag
Just because you use the overload containing a string doesn't mean it's pointless - see Software Monkey's answer. – Jon Skeet Dec 24 '08 at 7:44
vote up 0 vote down

Generally, this indicates someone who isn't comfortable with the new-fashioned C++ style of declaring when initialized.

Back in the C days, it wasn't considered good form to define auto variables in an inner scope; C++ eliminated the parser restriction, and Java extended that.

So you see code that has

int q;
for(q=0;q<MAX;q++){
    String s;
    int ix;
    // other stuff
    s = new String("Hello, there!");
    // do something with s
}

In the extreme case, all the declarations may be at the top of a function, and not in enclosed scopes like the for loop here.

IN general, though, the effect of this is to cause a String ctor to be called once, and the resulting String thrown away. (The desire to avoid this is just what led Stroustrup to allow declarations anywhere in the code.) So you are correct that it's unnecessary and bad style at best, and possibly actually bad.

link|flag
1  
Either I completely don't understand this, or it's not related to the actual question. The question is about the difference between ...="Hello" and ...=new String("Hello"). You seem to be talking about the difference between "String s=..." and "String s; ...; s=...". – Dave Costa Dec 24 '08 at 14:10
vote up 0 vote down

I guess it will depend on the code samples you're seeing.

Most of the times using the class constructor "new String()" in code sample are only to show a very well know java class instead of creating a new one.

You should avoid using it most of the times. Not only because string literals are interned but mainly because string are inmutable. It doesn't make sense have two copies that represent the same object.

While the article mensioned by Ruggs is "interesting" it should not be used unless very specific circumstances, because it could create more damage than good. You'll be coding to an implementation rather than an specification and the same code could not run the same for instance in JRockit, IBM VM, or other.

link|flag
It makes sense to have two copies if you want to throw away one of them, and it's a lot bigger than the other... – Jon Skeet Dec 24 '08 at 7:45
If one is bigger than the other, they would be two different objects in first place isn't? :-/ – Oscar Reyes Dec 26 '08 at 17:19

Your Answer

Get an OpenID
or

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