GithubHelp home page GithubHelp logo

trianglechallenge's Introduction

TriangleChallenge

Architectural Explanation

I have decided to use DDD concept, mainly on Length class for some reasons:

No classes inside my application knows that internally I'm using a BigDecimal, I could have used anything. I would be able to exchange the implementation if needed for performance reasons or memory reasons and my code base would not be affected. It's encapsulation.

I decided to use factory methods in order to produce objects in place of using new Length() constructor. The problem of new Length() that is not a refactor-friendly. In my implementation, if I want to create another type of Length I just need to create another factory method because all the logic of object creation will be inside of the factory methods.

Immutability

I can check the state of the object on the factory method. I'm reducing the logic validation to only one method on my code, if there is a Length object on my application I know that it is correct, because it's being validated before the object creation, by doing this I can assure that my object will always be valid.

trianglechallenge's People

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.