I was reading the documentation for StringBuffer, in particular the reverse() method: Javadoc Link Here. In there it mentioned something about "surrogate pairs". What is a surrogate pair in this context? What are low and high surrogates?
Thanks.
|
I was reading the documentation for StringBuffer, in particular the reverse() method: Javadoc Link Here. In there it mentioned something about "surrogate pairs". What is a surrogate pair in this context? What are low and high surrogates? Thanks.
| ||||
|
feedback
|
|
The term "surrogate pair" refers to a means of encoding Unicode characters with high code-points in the UTF-16 encoding scheme. In the Unicode character encoding, characters are mapped to values between 0x0 and 0x10FFFF. Internally, Java uses the UTF-16 encoding scheme to store strings of Unicode text. In UTF-16, two-byte (16-bit) code sequences are used. Since two bytes can only contain the range of characters from 0x0 to 0xFFFF, some additional complexity is used to store values above this range (0x10000 to 0x10FFFF). This is done using pairs of code points known as surrogates. The surrogate characters are in two ranges known as "low surrogates" and "high surrogates", depending on whether they are allowed at the start or end of the two-code sequence. | |||
|
feedback
|
|
What that documentation is saying is that invalid UTF-16 strings may become valid after calling the | |||
|
feedback
|
|
Surrogate pairs refer to UTF-16's way of encoding certain characters, see http://en.wikipedia.org/wiki/UTF-16/UCS-2#Code_points_U.2B10000..U.2B10FFFF | |||
|
feedback
|
Strings to be made up of, not just of char units. Too bad Java doesn’t allow you to use OO to fix that, but both theStringclass and theStringBufferclasses have beenfinalized. Say, isn’t that a euphemism for killed? :) – tchrist May 5 '11 at 19:32