Posts tagged with ,

  • Object creation review

    Published by Nicolas Paez on October 26th, 2009 9:25 am under concepts

    1 Comment
    When working with OO languages we use constructors to instantiate our objects. Constructors should always return a valid instance ready to use, you don’t need to perform any additional task before using the instance. In some occasions an object need some collaborators to perform its work and in that cases you will need to provide... read more