本文介绍了在Delphi中,带有数值的$是什么意思的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
char($ 23)$ b $这是什么意思,在Delphi中,当我看到这样的命令b
在这种情况下,美元符号是什么意思?
解决方案
美元符号表示以下是十六进制值。
ShowMessage(Char($ 23));显示#。
What does it means, in Delphi, when I see a command like this:
char($23)
What does the dollar symbol mean in this context?
解决方案
The dollar symbol represents that the following is a hex value.
ShowMessage(Char($23)); shows #.
这篇关于在Delphi中,带有数值的$是什么意思的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!