Previous topic | Next topic | Ada Home Page | Index

Designing Records

Programs often use information about real-world objects

To design a record:

Fitness club example:

	name	: names;	-- string sub-type
	phone	: phones;	-- string sub-type
	sex	: sexes;	-- enumerated type
	age	: ages;		-- integer sub-range
	weight	: weights;	-- float sub-type


Previous topic | Next topic | Ada Home Page | Index
c-lokan@adfa.oz.au / 27 Feb 96