Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what does driver program mean?

Tags:

theory

there is a quote from Algorithms for Java (sedgwick 2003) p. 135: "we commonly use driver programs when developing or debugging adt iplementations" what is meant by driver program? google just gives me loads of info about programming drivers, clearly not related

like image 725
Tom Avatar asked Sep 20 '09 17:09

Tom


1 Answers

In this context a driver program is just a program that uses the class or algorithm that you're developing. It's primarily used for testing your code while you develop it.

like image 198
Bill the Lizard Avatar answered Sep 30 '22 23:09

Bill the Lizard