函数原型:
UnicodeString __fastcall UIntToStr(unsigned Value);
UnicodeString __fastcall UIntToStr(unsigned __int64 Value);
头文件:
#include <System.SysUtils.hpp> (XE2 之后),#include <SysUtils.hpp> (XE 之前)
参数:
Value: 为整数 unsigned int 或 unsigned __int64 类型。
返回值:
转换之后的字符串,以十进制转换。
例:
unsigned int i = 12345;
unsigned __int64 k = 18446744073709551615ui64;
Edit1->Text = UIntToStr(i);
Edit2->Text = UIntToStr(k); |
相关链接:
• atoi • atol • _atoi64 • strtol • strtoll • strtoul • strtoull
• itoa • ltoa • ultoa • _i64toa • _ui64toa
• IntToStr • UIntToStr • IntToHex
• StrToInt • StrToIntDef • StrToInt64 • StrToInt64Def • StrToUInt64 • StrToUInt64Def
• EnumToStr • StrToEnum
|