将 Char 转换为 AnsiChar 或 WideChar (Delphi)
我正在将一个非常旧的(10 多年)应用程序升级到最新的 Delphi XE。我不断收到许多错误,就像
Incompatible types: 'WideChar' and 'AnsiChar'
我刚刚将 char 转换为正确的类型一样:例如。 AWideChar = WideChar(fncReturnsChar);
这会引起问题吗?
I'm upgrading a very old (10+ years) application to the latest Delphi XE. There are a number of errors I keep getting like
Incompatible types: 'WideChar' and 'AnsiChar'
I have been just casting the char to the right type: ex. AWideChar = WideChar(fncReturnsChar);
Is this going to cause problems?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
那里可能会给你带来一些问题。这是 Marco Cantù 撰写的关于 Delphi 中的 Unicode 的白皮书。
http://edn.embarcadero.com/article/38980
There might be problems in there for you. Here is a white paper on Unicode in Delphi by Marco Cantù.
http://edn.embarcadero.com/article/38980
问题是 String[10] 是 Delphi 后续版本中 AnsiString 的类型。您将在上面的代码中将 Unicode 字符分配给 ANSI 字符。
解决方案是简单的类型转换:
请参阅 Mikael Eriksson 的回答中推荐的文档。这是至关重要的。
The problem is that String[10] is the type of AnsiString in later Delphi versions. You are going to assign a Unicode character to an ANSI character in the above code.
The solution is a simple type cast:
Please refer the document recommended in Mikael Eriksson's answer. That is essential.