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.

link|improve this question

75% accept rate
It's UTF-16 terminology, explained here: download.oracle.com/javase/6/docs/api/java/lang/… – birryree May 5 '11 at 19:23
That method is buggy: it should reverse full characters ᴀᴋᴀ code points — not separate pieces of them, ᴀᴋᴀ code units. The bug is that that particular legacy method works only on individual char units instead of on code points, which is what you want 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 the String class and the StringBuffer classes have been finalized. Say, isn’t that a euphemism for killed? :) – tchrist May 5 '11 at 19:32
1  
@tchrist The documentation (and source) says that it does reverse as a string of code points. (Presumably 1.0.2 didn't do that, and you'd never get such a change of behaviour these days.) – Tom Hawtin - tackline May 5 '11 at 20:00
feedback

3 Answers

up vote 2 down vote accepted

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.

link|improve this answer
feedback

What that documentation is saying is that invalid UTF-16 strings may become valid after calling the reverse method since they might be the reverses of valid strings. A surrogate pair (discussed here) is a pair of 16-bit values in UTF-16 that encode a single Unicode code point; the low and high surrogates are the two halves of that encoding.

link|improve this answer
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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.