Which is more efficient for the compiler and the best practice for checking whether a string is blank?
- Checking whether the length of the string == 0
- Checking whether the string is empty (strVar == "")
Also, does the answer depend on language?
|
|
Which is more efficient for the compiler and the best practice for checking whether a string is blank?
Also, does the answer depend on language?
|
|||
|
|
|
|
Yes, it depends on language, since string storage differs between languages.
Etc. |
||
|
|
|
|
In .Net:
strings can be null, so .Length sometimes throws a NullReferenceException |
||
|
|
|
|
Actually, IMO the best way to determine is the IsNullOrEmpty() method of the string class. http://msdn.microsoft.com/en-us/library/system.string.isnullorempty. Update: I assumed .Net, in other languages, this might be different. |
||
|
|
|
|
In languages that use C-style (null-terminated) strings, comparing to In languages that store length as part of the string object (C#, Java, ...) checking the length is also O(1). In this case, directly checking the length is faster, because it avoids the overhead of constructing the new empty string. |
||
|
|
|
|
In Java 1.6, the String class has a new method isEmpty There is also the Jakarta commons library, which has the isBlank method. Blank is defined as a string that contains only whitespace. |
|||
|
|
|
|
@DerekPark: That's not always true. "" is a string literal so, in Java, it will almost certainly already be interned. |
||
|
|
|
|
For C strings,
will be faster than either
or
because you will avoid the overhead of a function call. |
||
|
|
|
|
Actually, it may be better to check if the first char in the string is '\0':
In Perl there's a third option, that the string is undefined. This is a bit different from a NULL pointer in C, if only because you don't get a segmentation fault for accessing an undefined string. |
|||
|
|
|
|
@Nathan
I almost mentioned that, but ended up leaving it out, since calling Honestly, I always use |
||
|
|
|
|
I use String.Empty as opposed to "" because "" will create an object, whereas String.Empty wont - I know its something small and trivial, but id still rather not create objects when I dont need them! (Source) |
||||||
|
|
|
Again, without knowing the language, it's impossible to tell. However, I recommend that you choose the technique that makes the most sense to the maintenance programmer that follows and will have to maintain your work. I'd recommend writing a function that explicitly does what you want, such as
or comparable. Now there's no doubt at is you're checking. |
||
|
|