Skip to content
M LearnwithManoj

Prototype Pattern - Clone Objects Instead of Rebuilding | 7/25

Prototype Pattern - when creating an object from scratch is expensive, clone an existing one instead. This is also where shallow-copy vs deep-copy bugs come from.

1 min read

Prototype Pattern - when creating an object from scratch is expensive, clone an existing one instead. This is also where shallow-copy vs deep-copy bugs come from.

What’s in the video (4m 35s)

  • 0:00 — Prototype Pattern
  • 0:19 — Meet Dolly the Sheep
  • 0:46 — Core Concept of Prototype Pattern
  • 1:16 — From Dolly the Sheep to Prototype Pattern
  • 1:38 — What is Prototype Pattern?
  • 2:12 — How Prototype Pattern Works?
  • 3:01 — When to Use Prototype Pattern?
  • 3:56 — Advantage of Prototype Pattern

Resources

For more in this series, visit the #design-patterns tag page or jump to the channel uploads list for everything else.

Related posts