MVC is not a design pattern, but a design idea.
Design pattern: is a fixed method, not flexible, there is a specific applicable scenario.
Design idea: is a kind of thought, more flexible, by a variety of design pattern combination realization.
MVC Design Ideas:
V (view): The main function is to display the data. (The main data can be, do not care about the data source.) (A want to drink, as long as there is water, do not care about the source of water)
M (Model): The main function provides data,. (mainly used to provide data, not care about who the data is to show). (The controller is responsible for giving m data and then controlling which view to display) (The dispenser is only responsible for providing water, but does not care who drinks the water)
C (Controller): The main function of coordination V and M. As a bridge between V and M. Mediation (b go to the water dispenser and give the water to a);
Abstract Factory design Pattern:
Provides an abstract base class, (providing basic functionality), using a concrete base class when used