delphi inttohex 整型到十六进制
Posted bwdblogs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delphi inttohex 整型到十六进制相关的知识,希望对你有一定的参考价值。
inttohex
from delphi help:
Returns the hex representation of an integer.
Unit
SysUtils
Category
numeric formatting routines
Delphi syntax:
function IntToHex(Value: Integer; Digits: Integer): string; overload;
function IntToHex(Value: Int64; Digits: Integer): string; overload;
C++ syntax:
extern PACKAGE AnsiString __fastcall IntToHex(int Value, int Digits);
extern PACKAGE AnsiString __fastcall IntToHex(__int64 Value, int Digits);
Description
IntToHex converts a number into a string containing the number‘s hexadecimal (base 16) representation. Value is the number to
convert. Digits indicates the minimum number of hexadecimal digits to return.
功能说明:该函数用于将“十进制”转换成“十进制”。该函数有二个参数。第一个参数为要转换的十进制数据,第二个参数是指定使用多少位来
显示十六进制数据。
参考实例:
Edit1.Text := IntToHex(100, 2);
执行结果,Edit1.Text等于64。
注意:Delphi没有提供专门的“十六进制”转换为“十进制”的函数。使用StrToInt函数可以实现这个功能。具体代码是:I := StrToInt(‘$‘
+ ‘64‘); 这时I等于100。加上一个‘$‘即可将“十六进制”转换为“十进制”。
showmessage(IntTostr(StrToint( ‘$ ‘+edit1.text)));
以上是关于delphi inttohex 整型到十六进制的主要内容,如果未能解决你的问题,请参考以下文章
Delphi 类型转换函数(有几个函数没见过,FloatToStrF,FloatToText等等)