Is WideString identical to String in Delphi 2009

前端 未结 4 1108
鱼传尺愫
鱼传尺愫 2021-01-02 00:20

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 Str

相关标签:
4条回答
  • 2021-01-02 00:32

    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.

    0 讨论(0)
  • 2021-01-02 00:42

    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.

    0 讨论(0)
  • 2021-01-02 00:43

    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.

    0 讨论(0)
  • 2021-01-02 00:55

    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.

    0 讨论(0)
提交回复
热议问题