Manager Classes

Started by
0 comments, last by Antheus 13 years, 1 month ago
Hello Everyone,

Im a student for application development and I came across those "Manager Classes".
Im wondering what those Manager classes are...
They seem to manage other objects but I cant find any example code how they are build or something...

Can anyone explain it to me and give me links for tutorials or something?

Best Regards
Julian
[size="2"]Java / C# Developer
Advertisement
They are like real world managers.

Always around, getting into your face, they talk a lot about some irrelevant stuff, often have opinions about stuff they don't understand and nobody really knows what it is they do.


A manager class typically performs some functionality of a container. A WorldManager might keep track of objects present in the world as they are created and destroyed and perform additional construction or cleanup. ResourceManager might keep a cache of already loaded resources and know where to load new ones from.

Manager is just a generic name. "We kinda need this bunch of functionality, but don't know where to put it, so it'll just live in that general purpose FooManager for now".

This topic is closed to new replies.

Advertisement