I've started to read about the Context design pattern. Here's what I understood from the text :

  • you have a map containing all your variables

  • you pass it around to whoever needs it, so that you won't have to send all the variables as method parameters

Did I "get" it?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

I think you got it.

However, I also think it is more of an anti-pattern to be avoided. See why here.

See also Law Of Demeter

link|improve this answer
feedback

A context object provides access to shared data and functions.

It can be an elegant and flexible substitute for:

  • globals
  • singletons
  • long parameter lists

The ACCU provides a more detailed description.

If you want a real world example of the context pattern in Java, check the Google Android API's.

You need to be mindful of your dependency graph when using the context pattern. (This is the reason KaptajnKold calls it an anti-pattern.)

To limit unnecessary dependencies, use different contexts for different purposes. Keep your contexts as simple as possible and use composition or inheritance to add complexity when needed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.