Вниз
Скачать: CL | DM;

Как создать в Delphi нестандартный тип? Например ..   Найти похожие ветки 

 
Бурундук   (2002-03-09 23:23) [11]

Можно, конечно, изобрести нечто вроде
(Но я не уверен, что по скорости это тебе подойдёт)

type
PArray = ^TArray;
TArray = array[0..MaxInt div 16]of Int64;
T3BitArray = class
private
FArray: PArray;
FLength: Integer;
FSize: Integer;
public
function Get(I: Integer): Byte;
procedure Put(I: Integer; Value: Byte);
property Elements[I: Integer]: Byte read Get write Put; default;
constructor Create(ALength: Integer);
destructor Destroy; override;
end;

implementation

{----------------------- T3BitArray ---------------------------}

constructor T3BitArray.Create(ALength: Integer);
begin
FLength := ALength;
FSize := Round(ALength*8/21)+1;
ReallocMem(FArray, FSize);
end;

destructor T3BitArray.Destroy;
begin
ReallocMem(FArray, 0);
end;

function T3BitArray.Get(I: Integer): Byte;
var N, b: Integer;
begin
N := I div 21;
b := I mod 21;
Result := (FArray^[N] shr b*3) and $7;
end;

procedure T3BitArray.Put(I: Integer; Value: Byte);
var N, b: Integer;
begin
N := I div 21;
b := I mod 21;
FArray^[N] := ((Value and $7) shl b*3) or ( (not($7 shl b*3))and(FArray^[N]) );
end;



Страницы: 1 вся ветка

Скачать: CL | DM;



Память: 0.44 MB
Время: 0.008 c
3-80443
prorok
2002-02-27 13:51
2002.03.25
Индексирование


6-80645
star
2002-01-04 12:54
2002.03.25
Как уловить момент подключения компьютера к интернету


14-80689
Alex_Sudakov
2002-02-10 02:01
2002.03.25
Работа


14-80660
Вася Пупков
2002-02-09 15:21
2002.03.25
Вечное движение программного обеспечения


1-80480
Lenidus
2002-03-08 00:53
2002.03.25
Как узнать что мышь вошла/вышла с компонента, если у этого компонента нет события OnMouseMove?




   Наверх