Play audio slide show -- Keyboard shortcut: 'x'  Lecture overview -- Keyboard shortcut: 'u'  Previous page: Konventionelt procedurekald -- Keyboard shortcut: 'p'  Next page: Begrebsdannelse [Section] -- 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 20 : 31

Kald af en operation 

 

class C

  operation P (x: D);
  ...

end

...


var a: C;
    b: D;
begin
  a.P(b)
end