Play audio slide show -- Keyboard shortcut: 'x'  Lecture overview -- Keyboard shortcut: 'u'  Previous page: Fra records til klasser -- Keyboard shortcut: 'p'  Next page: En klasse -- Keyboard shortcut: 'n'  Lecture notes - all slides and notes together  Annotated slide -- Keyboard shortcut: 't'  Alphabetic index  Help page about these notes  Course home  Play sound for this slide -- Keyboard shortcut: 'y'    Introduktion til objekt-orienteret programmering - slide 12 : 31

En konventionel record 

 

type R =
  record
    f1: T1;
    f2: T2;
    f3: T3
  end

...

procedure op1(p: R)
begin ... end

procedure op2(q: R; x: int)
begin ... end