2019-12-07 18:03:49 +02:00
..
2019-12-07 18:03:49 +02:00
2019-11-18 19:18:46 +02:00
2015-11-14 17:38:35 +08:00
2017-11-28 21:28:53 +02:00

layout, title, folder, permalink, categories, tags
layout title folder permalink categories tags
pattern Twin twin /patterns/twin/ Creational
Java
Difficulty-Intermediate

Intent

Twin pattern is a design pattern which provides a standard solution to simulate multiple inheritance in java

alt text

Applicability

Use the Twin idiom when

  • to simulate multiple inheritance in a language that does not support this feature.
  • to avoid certain problems of multiple inheritance such as name clashes.

Credits