System.SysUtils.TByteArray

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

type TByteArray = array [0..32767] of Byte;

C++

typedef System::StaticArray<System::Byte, 32768> TByteArray;

Propriétés

Type Visibilité  Source Unité  Parent
array
typedef
public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils


Description

TByteArray déclare un tableau d'octets (Bytes).

Le type TByteArray déclare un tableau statique d'octets (Bytes). La taille du tableau est de 32 768 (2**15) éléments.

Remarques :

  • Les tableaux statiques comme TByteArray sont déclarés avec une taille immuable.
  • Si vous avez besoin d'un tableau d'octets plus grand, vous pouvez utiliser TByteDynArray.