System.SysUtils.TEncoding.GetCharCount
Delphi
function GetCharCount(Bytes: PByte; ByteCount: Integer): Integer; overload; virtual; abstract;
function GetCharCount(const Bytes: array of Byte): Integer; overload;
function GetCharCount(const Bytes: TBytes): Integer; overload; inline;
function GetCharCount(const Bytes: array of Byte; ByteIndex, ByteCount: Integer): Integer; overload;
function GetCharCount(const Bytes: TBytes; ByteIndex, ByteCount: Integer): Integer; overload;
C++
virtual int __fastcall GetCharCount(System::PByte Bytes, int ByteCount) = 0 /* overload */;
int __fastcall GetCharCount(const System::Byte *Bytes, const int Bytes_High)/* overload */;
int __fastcall GetCharCount(const System::DynamicArray<System::Byte> Bytes)/* overload */;
int __fastcall GetCharCount(const System::Byte *Bytes, const int Bytes_High, int ByteIndex, int ByteCount)/* overload */;
int __fastcall GetCharCount(const System::DynamicArray<System::Byte> Bytes, int ByteIndex, int ByteCount)/* overload */;
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | TEncoding |
説明
一連のバイトをデコードして生成される文字数を計算します。
TEncoding.GetCharCount は、Bytes をデコードして生成される文字数を計算します。
Bytes は、バイト配列かバイト ポインタです。
ByteCount パラメータには、デコードするバイト数を指定します。
戻り値 は、デコードされた文字数です。