develwoutacause’s avatardevelwoutacause’s Twitter Archive—№ 1,207

  1. …in reply to @JemYoung
    @JemYoung Constructors should *never* have side effects or non-trivial computations. Constructors are for constructing, and assigning parameters to fields. If you want to do more, wrap it in a factory. blog.dwac.dev/posts/ctor/