Is there any conceivable reason why I would see different results using unicode string literals versus the actual hex value for the UChar.

UnicodeString s1(0x0040); // @ sign
UnicodeString s2("\u0040");

s1 isn't equivalent to s2. Why?

link|improve this question

58% accept rate
1  
What is UnicodeString -- is it defined by ICU? – Kerrek SB Nov 16 '11 at 0:06
@KerrekSB UnicodeString is ICU. – moshbear Nov 16 '11 at 0:43
@moshbear: Do you have a link to the API reference? This should be straight-forward to sort out. – Kerrek SB Nov 16 '11 at 0:51
Hm, the literal "\u0040" is just not well-defined (that is, it's implementation-defined). So I guess we can't answer that in general. If it were a UTF-8 string (u8"\u0040") we might be in better shape. – Kerrek SB Nov 16 '11 at 1:08
show 12 more comments
feedback

3 Answers

couldn't reproduce on ICU 4.8.1.1

#include <stdio.h>
#include "unicode/unistr.h"

int main(int argc, const char *argv[]) {
  UnicodeString s1(0x0040); // @ sign
  UnicodeString s2("\u0040");
  printf("s1==s2: %s\n", (s1==s2)?"T":"F");
  //  printf("s1.equals s2: %d\n", s1.equals(s2));
  printf("s1.length: %d  s2.length: %d\n", s1.length(), s2.length());
  printf("s1.charAt(0)=U+%04X s2.charAt(0)=U+%04X\n", s1.charAt(0), s2.charAt(0));
  return 0;
}

=>

s1==s2: T

s1.length: 1 s2.length: 1

s1.charAt(0)=U+0040 s2.charAt(0)=U+0040

gcc 4.4.5 RHEL 6.1 x86_64

link|improve this answer
feedback

For anyone else who find's this, here's what I found (in ICU's documentation).

The compiler's and the runtime character set's codepage encodings are not specified by the C/C++ language standards and are usually not a Unicode encoding form. They typically depend on the settings of the individual system, process, or thread. Therefore, it is not possible to instantiate a Unicode character or string variable directly with C/C++ character or string literals. The only safe way is to use numeric values. It is not an issue for User Interface (UI) strings that are translated.

[1] http://userguide.icu-project.org/strings

link|improve this answer
on some platforms you could do L"...." to get a unicode string. But as it said, it's unspecified. – Steven R. Loomis Nov 17 '11 at 4:49
feedback

The double quotes in your \u constant are the problem. This evaluated properly:

wchar_t m1( 0x0040 );
wchar_t m2( '\u0040' );
bool equal = ( m1 == m2 );

equal was true.

link|improve this answer
1  
I can't find anything in the C++11 standard that backs this up. Do you have a reference? – Kerrek SB Nov 16 '11 at 1:07
@KerrekSB: If you're asking about the reserved area, I believe that's specific to ICU (with which I'm only barely familiar). – Gnawme Nov 16 '11 at 1:22
I'm going to downvote this. I don't think this applies to the question. Also, the character pseudo-literal '\u0040' is no better defined that the string pseudo-literal "\u0040"; both are implementation- and context-dependent, and should not be used in that way at all. – Kerrek SB Nov 16 '11 at 1:28
@KerrekSB: The C++03 Standard, section 2.2, Character sets: "The universal-character-name construct provides a way to name other characters. [e.g. \u hex-quad or \U hex-quad hex-quad]. The character designated by the universal-character-name \uNNNN is that character whose character short name in ISO/IEC 10646 is 0000NNNN." In what way do you mean `implementation-dependent'? – Gnawme Nov 16 '11 at 1:36
Modified per @KerrekSB – Gnawme Nov 16 '11 at 1:37
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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