views:

1066

answers:

6

Which is the most reliable way to check if a character array is empty?

char text[50];

if(strlen(text) == 0) {}

or

if(text[0] == '\0') {}

or do i need to do

 memset(text, 0, sizeof(text));
 if(strlen(text) == 0) {}

Whats the most efficient way to go about this?

+3  A: 

Depends on whether or not your array is holding a null-terminated string. If so, then

if(text[0] == '\0') {}

should be sufficient.

Edit: Another method would be...

if (strcmp(text, "") == 0)

which is potentially less efficient but clearly expresses your intent.

Parappa
+4  A: 

The second method would almost certainly be the fastest way to test whether a null-terminated string is empty, since it involves one read and one comparison. There's certainly nothing wrong with this approach in this case, so you may as well use it.

The third method doesn't check whether a character array is empty; it ensures that a character array is empty.

James McNellis
+2  A: 

This will work to find if a character array is empty. It probably is also the fastest.

if(text[0] == '\0') {}

This will also be fast if the text array is empty. If it contains characters it needs to count all the characters in it first.

if(strlen(text) == 0) {}
Peter Stuifzand
+3  A: 

The second one is fastest. Using strlen will be close if the string is indeed empty, but strlen will always iterate through every character of the string, so if it is not empty, it will do much more work than you need it to.

As James mentioned, the third option wipes the string out before checking, so the check will always succeed but it will be meaningless.

Graeme Perrow
+6  A: 

Given this code:

char text[50];
if(strlen(text) == 0) {}

Followed by a question about this code:

 memset(text, 0, sizeof(text));
 if(strlen(text) == 0) {}

I smell confusion. Specifically, in this case...

char text[50];
if(strlen(text) == 0) {}

... the contents of text[] will be uninitialized and undefined. Thus, strlen(text) will return an undefined result.

The easiest/fastest way to ensure that a C string is initialized to the empty string is to simply set the first byte to 0.

char text[50];
text[0] = 0;

From then, both strlen(0) and the very-fast-but-not-as-straightforward (text[0] == 0) tests will both detect the empty string.

bbum
I structured that badly, I meant for the memset(text, 0, sizeof(text)); to come immediately after char text[50]; because I was not sure if it was bad practice to strlen a char array before it was assigned anything.
ZPS
It certainly is a bad idea to strlen an array before it is assigned - strlen will advance through memory until it reaches a 0 byte, which may be well beyond the end of the array.
Graeme Perrow
A: 

initiate only when allocating and always dereference when deallocating ie. avoid setting it to null (recent bsd known bug set thing to null)

LarsOn