google = pascal type
http://www.tutorialspoint.com/…ta_types.htm
Ono se to pouziva hlavne v delphi. Dalsi jazyky to spis uz znaji jako objekt.
Kdyz si udelas jednu promenou, tak nema smysl. Ale kdyz treba mas promenych vic, tak uz jo. Jinak by ses upsal a mel bordel v programu, ze bys to treba na jednom miste zmenil a na druhem mel jeste starou verzi.
type
TImage = Record
data: String[100]; /* binarni data */
mime_type: String[100]; /* image/jpeg */
popisek : String[100];
width: Integer;
height : Integer; /* atd... */
End;
Var
img : TImage;
Procedure DisplayBookDetails(obrazek : TImage);
Begin
Writeln('Here are the book details:');
Writeln;
End;
google = pascal type record example
http://pascal-programming.info/lesson11.php