vote up 2 vote down star

I have a cow-orker that swears by

//in a singleton "Constants" class
public static final String EMPTY_STRING = "";

in a constants class available throughout the project. That way, we can write something like

if (Constants.EMPTY_STRING.equals(otherString)) {
    ...
}

instead of

if ("".equals(otherString)) {
    ...
}

I say it's

  1. not worth it--it doesn't save any space in the heap/stack/string pool,
  2. ugly, and
  3. an abuse of a constants class.

Who is the idiot here?

flag

What language are you using? – Michael Kniskern Oct 17 '08 at 22:03
1  
Java (see the tags) – Troy Howard Oct 17 '08 at 22:09
1  
a cow orker? How does one ork cows? =) – Erik Oct 18 '08 at 3:44

15 Answers

vote up 16 vote down check

String literals are interned by default, so no matter how many times you refer to "" in code, there will only be one empty String object. I don't see any benefit in declaring EMPTY_STRING. Otherwise, you might as well declare ONE, TWO, THREE, FOUR, etc. for integer literals.

Of course, if you want to change the value of EMPTY_STRING later, it's handy to have it in one place ;)

link|flag
Are they always interned, or just normally so? Are you guaranteed that all empty strings will equal all other empty strings, even across class and package boundaries? – Paul Tomblin Oct 17 '08 at 22:11
All empty String literals. You can create other distinct String objects that are also empty. – Dan Dyer Oct 17 '08 at 22:12
2  
All literals and values of "constant expressions" are interned. See JVM spec: java.sun.com/docs/books/… – James Schek Oct 18 '08 at 0:23
vote up 1 vote down

As a tangent to the question, I generally recommend using a utility function when what you're really checking for is "no useful value" rather than, specifically, the empty string. In general, I tend to use:

import org.apache.commons.lang.StringUtils;

// Check if a String is whitespace, empty ("") or null.
StringUtils.isBlank(mystr); 
// Check if a String is empty ("") or null.
StringUtils.isEmpty(mystr);

The concept being that the above two:

  • Check the various other cases, including being null safe, and (more importantly)
  • Conveys what you are trying to test, rather than how to test it.
link|flag
vote up 0 vote down

Hehe, funny thing is: Once it compiles, you wont see a difference (in the byte-code) between the "static final" thing and the string literal, as the Java-compiler always inlines "static final String" into the target class. Just change your empty string into something recognizable (like the LGPL-text) and look at the resulting *.class file of code that refernces that constant. You will find your text copied into that class-file.

link|flag
vote up 4 vote down

Well, I could guess too, but I did a quick test... Almost like cheating...

An arbitrary string is checked using various methods. (several iterations)

The results suggests that isEmpty() is both faster and indeed more readable; If isEmpty() is not available, length() is a good alternative.

Using a constant is probably not worth it.

"".equals(someString())      :24735 ms
t != null && t.equals("")    :23363 ms
t != null && t.equals(EMPTY) :22561 ms
EMPTY.equals(someString())   :22159 ms
t != null && t.length() == 0 :18388 ms
t != null && t.isEmpty()     :18375 ms
someString().length() == 0   :18171 ms

In this scenario;

"IAmNotHardCoded".equals(someString())

I would suggest defining a constant in a r e l e v a n t place, since a global class for all constants really sucks. If there is no relevant place, you are probably doing something else wrong...

Customer.FIELD_SHOE_SIZE //"SHOE_SIZE"

Might be considered a relevant place where as;

CommonConstants.I__AM__A__LAZY__PROGRAMMER // true

is not.

For BigIntegers and similar thing, I tend to end up defining a final static locally; like:

private final static BigDecimal ZERO = new BigDecimal(0);
private final static BigDecimal B100 = new BigDecimal("100.00");

Thats bugs me and wouldn't it be nice with some sugar for BigInts and BigDecimals...

link|flag
vote up 0 vote down

One case where it does make sense to have a constant with value of empty string is when you the name captures the semantics of the value. For example:

if (Constants.FORM_FIELD_NOT_SET.equals(form.getField("foobar"))) {
    ...
}

This makes the code more self documenting (apart from the argument that a better design is to add the method checking whether a field is set to the form itself).

link|flag
vote up 1 vote down

I'm with your coworker. While the empty string is hard to mistype, you can accidentally put a space in there and it may be difficult to notice when scanning the code. More to the point it is a good practice to do this with all of your string constants that get used in more than one place -- although, I tend to do this at the class level rather than as global constants.

FWIW, C# has a static property string.Empty for just this purpose and I find that it improves the readability of the code immensely.

link|flag
If you're not programming with a monospace font, you're doing it wrong. If you are, there's an obvious difference between "" and " ". – David Thornley Oct 19 at 14:03
vote up 2 vote down

We just just the following for situations like this

public class StaticUtils
{
    public static boolean empty(CharSequence cs)
    {
        return cs == null || cs.length() == 0;
    }

    public static boolean has(CharSequence cs)
    {
        return !empty(cs);
    }
}

Then just import static StatiUtils.*

link|flag
vote up 0 vote down

Hmm, the rules are right but are being taken in a different sense! Lets look at the cause, firstly all object references in java are checked by equals(). Earlier on, in some languages it was done using '==' operator, if by accident someone used '=' for '==', a catastrophe. Now the question of magic numbers/constants, for a computer all constants/numbers are similar. Instead of 'int ONE=1' one can surely use 1, but will that hold true for double PI = 3.141...? What happens if someone tries to change the precision sometime later.

If we were to come up with a check list, what would the rule be address the general guideline isn't it? All I mean to say is that rules are supposed to aid, we can surely bend the rules only when we know them very well. Common sense prevails. As suggested by a friend of mine, program constants like 0/1 which denote exit conditions can be hard coded and hence magic number principle doesn't apply. But for those which participate in logical checks/rules, better keep them as configurable constants.

link|flag
vote up 1 vote down

The same argument comes up in .NET from time to time (where there's already a readonly static field string.Empty). It's a matter of taste - but personally I find "" less obtrusive.

link|flag
1  
Unless, of course, you happen to scan over the dratted space that you put in there by mistake. – tvanfosson Oct 17 '08 at 22:47
vote up 3 vote down

Ironically the whole point of constants is to make them easily changeable. So unless your co-worker plans to redefine EMPTY_STRING to be something other than an empty string - which would be a really stupid thing to do - casting a genuine fixed construct such as "" to a constant is a bad thing.

As Dan Dyer says, its like defining the constant ONE to be 1: it is completely pointless and would be utterly confusing - potentially risky - if someone redefined it.

link|flag
Another point is to document "magic" literals. But in this case... – John Nilsson Oct 17 '08 at 22:35
That is a fair point John. – David Arno Oct 17 '08 at 22:48
vote up 7 vote down

Your co-worker is right!

What if they change the definition of an EMPTY_STRING to be "Supercalifragilisticexpialidocious"? YOU are going to look pretty silly having to go through all your source code changing those "".equals() by hand!

He'll be able to change it in one place!

</sarcasm>

link|flag
SupercalifragilisticexpialidociousRSupercalifragilisticexpialidociousiSupercalifragilisticexpialidociousgSupercalifragilisticexpialidocioushSupercalifragilisticexpialidocioustSupercalifragilisticexpialidocious!Supercalifragilisticexpialidocious – Dour High Arch Oct 18 '08 at 0:43
you forgot to open your sarcasm tag – Shawn Oct 20 '08 at 12:50
vote up 9 vote down

Why on earth would you want a global variable in Java? James Gosling really tried to get rid of them; don't bring them back, please.

Either

0 == possiblyEmptyString.length()

or

possiblyEmptyString.isEmpty() // Java 6 only

are just as clear.

link|flag
And a little faster, too, as Karl points out. – mmyers Oct 20 '08 at 13:52
except if possiblyEmptyString is null, then you get an NPE – tuler Nov 26 at 19:49
vote up 3 vote down

I don't like either choice. Why not if (otherString.length() == 0)

Edit: I actually always code

if (otherString == null || otherString.length() == 0)
link|flag
Because if otherString is null, it causes an exception – Bill K Oct 17 '08 at 22:07
fixed in edit. i never actually just code the length test – David G Oct 17 '08 at 22:10
Should be a 0 now. I'm puzzled why I didn't see Douglas Squirrel's answer. Must be timing. – David G Oct 17 '08 at 22:12
There's also a Jakarta String utility static method to determine if a string is blank, meaning either null or empty. – bpapa Oct 17 '08 at 22:57
Apache Common's StringUtils is far more helpful in this regard. Has a ton of nice static methods. – MetroidFan2002 Oct 18 '08 at 3:49
vote up 0 vote down
  1. yes--it offers no benefit.
  2. depends on what you're used to, I'm sure.
  3. No, it's just a constant--not an abuse.
link|flag
vote up 2 vote down

I much prefer seeing EMPTY_STRING.

It makes it english. "".equals 'reads' differently than EMPTY_STRING.equals.

link|flag
1  
there is no reason for this to be modded down. – Dustin Getz Oct 17 '08 at 22:38

Your Answer

Get an OpenID
or

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