« Adapter pattern » : différence entre les versions

De Banane Atomic
Aller à la navigationAller à la recherche
(Page créée avec « Category:CSharp Category:Design Patterns = Definition = Convert the interface of a class into another interface that clients expect.<br> The Adapter pattern lets c… »)
(Aucune différence)

Version du 7 juin 2020 à 15:34

Definition

Convert the interface of a class into another interface that clients expect.
The Adapter pattern lets classes work together that could not otherwise because of incompatible interfaces.

  • Match otherwise incompatible interfaces

Exemple