Are there any design patterns that deal directly with configuration classes. Thats is, classes that are simply containers for configuration settings.
Are there any design patterns that deal directly with configuration classes. Thats is, classes
Share
I usually tend to use constants for global settings. Not everything must be a class.
Some will tell you that a Singleton pattern is fit here, but I think different. Singletons are evil. See this question on Programmers