views:

371

answers:

8

Just wondering why this is the case. I'm eager to know more about low level languages, and I'm only into the basics of C and this is already confusing me.

Do languages like PHP automatically null terminate strings as they are being interpreted and / or parsed?

I've also read a string in C is really an array of chars in an article I found online. However, a comment on that article said that was not the case technically. Who is right?

+1  A: 

It is a convention - one could have implemented it with another algorithm (e.g. length at the beginning of the buffer).

In a "low level" language such as assembler, it is easy to test for "NULL" efficiently: that might have ease the decision to go with NULL terminated strings as opposed of keeping track of a length counter.

jldupont
+4  A: 

Because in C strings are just a sequence of characters accessed viua a pointer to the first character.

There is no space in a pointer to store the length so you need some indication of where the end of the string is.

In C it was decided that this would be indicated by a null character.

In pascal, for example, the length of a string is recorded in the byte immediately preceding the pointer, hence why pascal strings have a maximum length of 255 characters.

Visage
+6  A: 

C strings are arrays of chars, and a C array is just a pointer to a memory location, which is the start location of the array. But also the length (or end) of the array must be expressed somehow; in case of strings, a null termination is used. Another alternative would be to somehow carry the length of the string alongside with the memory pointer, or to put the length in the first array location, or whatever. It's just a matter of convention.

Higher level languages like Java or PHP store the size information with the array automatically & transparently, so the user needn't worry about them.

Joonas Pulakka
+1  A: 

They need to be null terminated so you know how long they are. And yes, they are simply arrays of char.

Higher level languages like PHP may choose to hide the null termination from you or not use it at all - they may maintain a length, for example. C doesn't do it that way because of the overhead involved. High level languages may also not implement strings as an array of char - they could (and some do) implement them as lists of arrays of char, for example.

anon
A: 

They are null-terminated because whole plenty of Standard Library functions expects them to be.

Alexander Poluektov
And also because that is how the C language spec says that string literals are encoded.
Stephen C
+10  A: 

From Joel's excellent article on the topic:

Remember the way strings work in C: they consist of a bunch of bytes followed by a null character, which has the value 0. This has two obvious implications:

There is no way to know where the string ends (that is, the string length) without moving through it, looking for the null character at the end. Your string can't have any zeros in it. So you can't store an arbitrary binary blob like a JPEG picture in a C string. Why do C strings work this way? It's because the PDP-7 microprocessor, on which UNIX and the C programming language were invented, had an ASCIZ string type. ASCIZ meant "ASCII with a Z (zero) at the end."

Is this the only way to store strings? No, in fact, it's one of the worst ways to store strings. For non-trivial programs, APIs, operating systems, class libraries, you should avoid ASCIZ strings like the plague.

Max Shawabkeh
Great article...
alex
+3  A: 

C has no notion of strings by itself. Strings are simply arrays of chars (or wchars for unicode and such).

Due to those facts C has no way to check i.e. the length of the string as there is no "mystring->length", there is no length value set somewhere. The only way to find the end of the string is to iterate over it and check for the \0.

There are string-libraries for C which use structs like

struct string {
    int length;
    char *data;
};

to remove the need for the \0-termination but this is not standard C.

Languages like C++, PHP, Perl, etc have their own internal string libraries which often have a seperate length field that speeds up some string functions and remove the need for the \0.

Some other languages (like Pascal) use a string type that is called (suprisingly) Pascal String, it stores the length in the first byte of the string which is the reason why those strings are limited to a length of 255 characters.

dbemerlin
+1  A: 

In C strings are represented by an array of characters allocated in a contiguous block of memory and thus there must either be an indicator stating the end of the block (ie. the null character), or a way of storing the length (like Pascal strings which are prefixed by a length).

In languages like PHP,Perl,C# etc.. strings may or may not have complex data structures so you cannot assume they have a null character. As a contrived example, you could have a language that represents a string like so:

class string
{
   int length;
   char[] data;
}

but you only see it as a regular string with no length field, as this can be calculated by the runtime environment of the language and is only used internally by it to allocate and access memory correctly.

nichromium