In the Java and C# implementation of String, is the underlying information a null-terminated char array like in C/C++?
(In addition to other information like size, etc.)
|
In the Java and C# implementation of (In addition to other information like size, etc.) |
|||
|
No. It is a sequence of UTF-16 code units and a length. Java and C# strings can contain embedded NULs. Each UTF-16 code-unit occupies two bytes, so you can think of the string
Note that the last byte in
From javadoc
C#
I'm not sure whether C# guards against orphaned surrogates, but the above text seems to mix the terms "scalar value" and "codepoint" which is confusing. A scalar value is defined thus by
Java definitely takes the codepoint view, and does not attempt to guard against invalid scalar values in strings. "Strings Immutability and Persistence" explains the efficiency benefits of this representation.
EDIT: The above is true conceptually and in practice, but VMs and CLRs have freedom to do things differently in certain situations. The Java language specification mandates that strings are laid out a certain way in VMs don't do this in practice though. "The Most Expensive One-byte Mistake" argues that NUL-terminated strings were a huge mistake in C, so I doubt VMs will adopt them internally for efficiency reasons.
|
|||||||||||||
|
|
As an implementation detail, a string in the Microsoft implementation of the CLR is laid out in memory pretty much the same as a BSTR was in COM. (See http://blogs.msdn.com/b/ericlippert/archive/2003/09/12/52976.aspx for details on BSTRs.) That is, a string is laid out as four bytes containing the length, followed by that many two-byte UTF-16 characters, followed by two bytes of zero. Of course it is not necessary to end a length-prefixed string with a zero character, but it is certainly convenient to do so, particularly when you consider the scenarios where you have to interoperate between C# programs and unmanaged C++ or VB6 programs. The marshaller can sometimes save on some copying because it knows that the string is already in a null-terminated format. As I said, that's an implementation detail; you shouldn't rely upon it. I don't know what Java does. |
|||
|
|
|
I can't speak for C#, but Java's String source says no. Size information of the array is stored in the array, giving you no need for a null termination.
|
|||
|
|
charis also 16-bit unsigned instead of 8-bit. – Peter Lawrey Sep 8 '11 at 18:19