14

I'm getting some weird behaviour recompiling some applications in 2009 that used widestrings at various points.

In a Delphi 2009 App is Widestring identical to String?

Toby Allen
  • 10,997
  • 11
  • 73
  • 124

4 Answers4

28

No, they are not idenitical.

WideString is just a wrapper for the ActiveX/COM BSTR type. You need it when working with with strings in ActiveX/COM.

String in Delphi 2009 and later is an alias for UnicodeString, which can hold Unicode characters, just like BSTR does, but it's NOT the same as WideString. WideString is allocated by the COM memory manager, and is not reference counted. UnicodeString is allocated by the RTL memory manager, and is reference counted, just like AnsiString is.

You should use (Unicode)String wherever possible, and only use WideString for COM interop, or dealing with legacy libraries that use WideString for Unicode support.

Remy Lebeau
  • 555,201
  • 31
  • 458
  • 770
Roddy
  • 66,617
  • 42
  • 165
  • 277
7

It seems the answer is here:

The most dramatic change in Delphi 2009 is that the “string” type is now an alias for UnicodeString instead of AnsiString.

haggai_e
  • 4,689
  • 1
  • 24
  • 37
6

One other important thing to note is the performance difference.

In Marco Cantu's White Paper (referred to in moodforaday's answer) says:

"WideString was (and still is) not reference counted and is extremely poor in terms of performance and flexibility (for example, it uses the Windows global memory allocator rather than the native FastMM4)."

Almost every upgrade guide for Delphi 2009 I've seen recommends you convert all WideStrings to Strings.

lkessler
  • 19,819
  • 36
  • 132
  • 203
4

See this paper by Marco Cantu which outlines the workings of string (i.e. UnicodeString) in Delphi 2009:

"White Paper: Delphi and Unicode"

http://dn.codegear.com/article/38980

Basically, it's what Roddy said, but takes 27 pages to go into detail.

Marek Jedliński
  • 7,088
  • 11
  • 47
  • 57