티스토리 뷰

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

System.SysUtils

System.SysUtils

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. (무엇의 안에 또는 그 일부로) …이 들어 있다
2. (
감정을) 억누르다
3. (
좋지 않은 일을) 방지하다

 

출처: 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
링크
«   2025/01   »
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
글 보관함