Git Product home page Git Product logo

design-patterns's Introduction

design-patterns

design pattern

Introduction

Design patterns are the best formalized practices a programmer can use to solve common problems when designing an application or system.

Design patterns can speed up the development process by providing tested, proven development paradigms.

Reusing design patterns help prevent subtle issues that cause major problems, and it also improves code readability for coders and architects who are familiar with the patterns.


Factory Design Pattern


  • creational design pattern that provides an interface for creating objects in a superclass
  • also known as virtual constructor

Advantages

  • allows subclasses to choose the type of objects that will be created.
  • promotes loose-coupling by eliminating the need to bing application-specific class into the code

Uses

  • when a class is unaware of the type of subclass it has to create
  • when a class wants to give the control of creating its objects to it's subclass

Singleton Design Pattern


  • creational design pattern the provides a static method to access the instance of a given class
  • one of the simplest design pattern in java

Advantages

  • ensures that the class has a single instance
  • provides a global access point to the instance

Uses

  • when only a single instance of the class is required to control the action throughout the complete execution
  • logging, database connections, driver objects and thread-pool

Code Style

This project uses prettier-java to format JAVA code.

Install


Prerequisites

Install Prettier and Prettier-Java plugin

# Local installation
npm install prettier-plugin-java --save-dev

# Or globally
npm install -g prettier prettier-plugin-java

Formatting the code

make fmt

You can customize the formatting rules by editing the .prettierrc.yaml file present in the project root.

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.