将整数转换为字符串
我有一些数字存储在名为 mode
的 Integer
中,但我需要在 TProcess
中使用它们。为此,我需要将 Integer
转换为 String
,因为如果我不这样做,我会收到错误:
不兼容的类型:“LongInt”预期为“AnsiString”
然后我想知道如何将Integer
转换为String
?
I have a some numbers stored in a Integer
called mode
, but I need to use they in a TProcess
. For this I need to convert the Integer
into a String
, because if I don't do this, I got the error:
Incompatible types: got "LongInt" expected "AnsiString"
Then I want to know how I can convert a Integer
into a String
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
IntToStr
:You can use
IntToStr
:我刚刚使用 Delphi XE8 的 30 天测试版本完成了第一步,并发现必须编写例如
但是:变量“Ticks”似乎是一个对象!我没想到,但你也可以写信
给我,这似乎要优雅得多。
I just did my first steps with a 30day test version of Delphi XE8 and figured out that one has to write e.g.
But: The variable 'Ticks' seems to be an object! I did not expect that, but you can also write
To me that seems to be much more elegant.