|
안녕하세요 스페로 입니다.
델파이를 저도 잘은 모르고 그냥 델파이 소스가 있으면 빌더로 변경해서 쓸정도로만.. 쩝..
A record (analogous to a structure in some languages) represents a heterogeneous set of elements. Each element is called a field; the declaration of a record type specifies a name and type for each field. The syntax of a record type declaration is
type recordTypeName = record
fieldList1: type1;
...
fieldListn: typen;
end
델파이 헬프를 보니 이렇게 나와 잇네요..
analogous to a structure in some languages ===> 다른언어에서는 유사한 structure
C / C++에서 구조체로 해결하면 될듯 합니다...
하안인 님이 쓰신 글 :
: 델파이
: PLOGBUF = ^TLOGBUF;
: TLOGBUF = record
: gubun: integer;
: sTime: TDateTime;
: eTime: TDateTime;
: uTime: integer;
: buf: array[1..10] of string;
: end;
:
: 위의 구조를 빌더로 변환하려면 어떻게 해야 하나요
: 질문만 올려서 죄송합니다.
:
|