I have a program that handles different objects which have their own sort of instructions set (say their own program), and from a main class I want to run these programs. Then I have two choices:
- Make a class InstructionHandler, create an instance of it in my main class and pass requests to that one object [Singleton pattern - thanks to Mark Peters]
- Make a class InstructionHandler with just static methods and make use of these in my main class
What would be the good way to go from a software - design point of view?