System.SysUtils.StrToUInt64Def
Delphi
function StrToUInt64Def(const S: string; const Default: UInt64): UInt64;
C++
extern DELPHI_PACKAGE unsigned __int64 __fastcall StrToUInt64Def(const System::UnicodeString S, const unsigned __int64 Default)/* overload */;
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | System.SysUtils |
説明
整数を表す文字列(10 進または 16 進表記)を数値に変換します。
StrToUInt64Def では、整数型数値を 10 進または 16 進表記で表す文字列 S を数値に変換します。出力値は符号なし 64 ビット整数です。S が有効な数値を表さない場合、StrToUInt64Def は、Default に渡された数値を返します。
StrToUInt64Def では、次の 16 進表記の文字列をサポートしています。
- Delphi の場合: 0$1234 および 0x1234
- C++ の場合: 0x1234