Stefan Genov

Home

❯

Pathways

❯

Forest

❯

Software Engineering Index

❯

Programming Index

❯

Constructors

Constructors

Jan 11, 20261 min read

description
Construct new object instances
parent
Programming Index
state
  • sapling
date
2025-04-01
opposes
  • Destructors
relates
  • Object Oriented Programming
title
Constructors

Best Practices

  • Keep constructors simple. Constructing an object shouldn’t be an expensive operation.
    • No API calls
    • No resources created
    • No resources modified
  • Dependency Injection is your friend.
    • Use interfaces when possible.
      • High Level Components Should Depend On Low Level Abstractions

Graph View

Backlinks

  • Programming Index
  • GitHub
  • sgenov.dev