|
최준호.스페로 님이 쓰신 글 :
: 안녕하세요 스페로 입니다.
:
: 델파이를 저도 잘은 모르고 그냥 델파이 소스가 있으면 빌더로 변경해서 쓸정도로만.. 쩝..
:
: 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++에서 구조체로 해결하면 될듯 합니다...
:
:
델파이에서는 이구조체를 TQueue에 집어넣으니 문제가 없는데
빌더에서 구조체를 만들어서 Queue에 집어넣으니 에러가 나서요.
어떤 다른 큐에 집어넣는 다른 구조가 있는가 해서요.
|