Definice typ∙

Definice typ∙ mß ve vnit°nφm programovacφm jazyce tento tvar:

type identifikßtor = popis_typu;
     ...
     identifikßtor = popis_typu;

Definice typu oznaΦφ typ specifikovan² popisem typu identifikßtorem.

Popisem typu m∙₧e b²t nap°. popis typu pole, popis typu zßznam, popis typu °et∞zec znak∙ nebo popis jednoduch²ch typ∙ aj.. - viz p°ehled typ∙

P°φklad:

type
  pole = array[1..4] of integer;

  rec = record
    datum : date;
    obs : array[1..28] of boolean;
    kdo : array[1..28] of string[16];
    co : array[1..28] of string[30];
  end;

var
  c : cursor rec;
  souradnice : pole;

Viz takΘ:

Vnit°nφ programovacφ jazyk

Programy

Deklarace v programech

P°ehled typ∙