Introduction to OOP: Chapter 15 : Case Study: Container Classes [next] [previous] [audio] [real] [text]

Conventional Solution

Conventional containers tie too closely the container and the element type.

type
	Link = Record
		value : integer;
		nextELement : ^ Link;
	end;
Intro OOP, Chapter 15, Slide 3