Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
Sequential coupling

In object-oriented programming, sequential coupling (also known as temporal coupling) is a form of coupling where a class requires its methods to be called in a particular sequence. This may be an anti-pattern, depending on context.

Methods whose name starts with Init, Begin, Start, etc. may indicate the existence of sequential coupling.

Using a car as an analogy, if the user steps on the gas without first starting the engine, the car does not crash, fail, or throw an exception - it simply fails to accelerate.

Sequential coupling can be refactored with the template method pattern to overcome the problems posed by the usage of this anti-pattern.

We don't have any images related to Sequential coupling yet.
We don't have any YouTube videos related to Sequential coupling yet.
We don't have any PDF documents related to Sequential coupling yet.
We don't have any Books related to Sequential coupling yet.
We don't have any archived web articles related to Sequential coupling yet.

References

  1. Andriy, Buday (15 April 2010). "Refactor: Sequential Coupling => Template Method". The Code Project. Retrieved 23 April 2011. http://www.codeproject.com/Articles/72734/Refactor-Sequential-Coupling-equals-Template-Metho.aspx