티스토리 뷰
Delphi
function IntToHex(Value: Integer; Digits: Integer): string;
function IntToHex(Value: Int64; Digits: Integer): string;
function IntToHex(Value: UInt64; Digits: Integer): string;
C++
extern PACKAGE System::UnicodeString __fastcall IntToHex(int Value, int Digits)/* overload */;
Properties
Type |
Visibility |
Source |
Unit |
Parent |
function |
public |
System.SysUtils.pas System.SysUtils.hpp |
Description
Returns the hex representation of an integer.
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.
정수의 16 진수 표현을 반환합니다.
IntToHex는 숫자를 16 진수 (16 진수)로 나타내는 숫자들이 들어있는 문자열로 변환합니다.
Value는 변환할 숫자입니다.
Digits은 반환할 최소 16 진수를 나타냅니다. ※ 자리수
Example
var HexStr: string;
begin HexStr := IntToHex(10, 4); // 결과: 000A Writeln(HexStr);
HexStr := IntToHex(100, 4); // 결과: 0064 Writeln(HexStr);
HexStr := IntToHex(1000, 4); // 결과: 03E8 Writeln(HexStr);
HexStr := IntToHex(1000000, 6); // 결과: 0F4240 Writeln(HexStr);
Readln; end. |
containing 영국식 (건축공학) 아무림 contain 미국·영국 [kən|teɪn] 1. (무엇의 안에 또는 그 일부로) …이
들어 있다 |
출처: http://docwiki.embarcadero.com/Libraries/XE2/en/System.SysUtils.IntToHex
'프로그래밍 언어 > Delphi' 카테고리의 다른 글
[Reference] System.SysUtils.DeleteFile (0) | 2017.03.30 |
---|---|
[Reference] System.Continue (0) | 2017.03.29 |
[Reference] System.SysUtils.Date (0) | 2017.03.27 |
[Reference] System.Addr (0) | 2017.03.26 |
[Reference] System.SysUtils.StrToInt (0) | 2017.03.25 |
- Total
- Today
- Yesterday
- 설명
- 응용
- ADODB
- RA
- tdataset
- 왕초보 영어회화 100일의 기적
- 교육센터
- Pte
- SWT
- 자료구조
- Reference
- 작문
- 일기
- 문법
- 계산기
- 스택
- 말하기
- System
- java
- VCL
- 상황
- 독해
- SysUtils
- wfd
- Delphi
- 여행영어 100일의 기적
- 알고리즘
- 정렬
- 영어
- 대상
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |