<!--CodeS-->
type
PByteArray = ^TByteArray;
TByteArray = array [0..65535] of Byte;
var
nSubject: PByteArray;
begin
GetMem(nSubject, nSubjectNum * SizeOf(Byte));
임의의 과목수에 대하여 동적 할당. Getmem(nSubject, nSubjectNum * sizeof(byte)); 이렇게 할당했습니다. 그런데... 각각의 요소요소 마다 어떻게 접근하죠.... 가령, 제가 n-1번째 자리에 99점을 넣고 싶습니다. 그럴때 어떻게 하죠......
도끼로이마까
•
2005.04.12 03:39
<!--CodeS-->
uses SysUtils;
...
var
nSubject: PByteArray; // <<---
&nbs...
최용일
•
2005.04.12 02:04
안녕하세요. 최용일입니다.
<!--CodeS-->
type
PByteArray = ^TByteAr...
이중철
•
2005.04.11 21:43
음..
먼저 nSubject이 n개가 있나요?
이것이 아닐경우
nSubject 을 n개의 바이트로 할당한것이라면
n...
uses SysUtils;
...
var
nSubject: PByteArray; // <<---
nSubjectNum: integer;
begin
GetMem(nSubject, nSubjectNum * SizeOf(byte));
nSubject[n - 1] := 99; // <<---
end;
<!--CodeE-->