Design a Musical Jukebox Using Object-oriented Principles

The Object-Oriented Design Principles are the core of OOP programming, but I have seen most of the Java programmers chasing design patterns like Singleton pattern, Decorator pattern, or Observer pattern, and not putting enough attention on learning Object-oriented analysis and design. It's essential to learn the basics of Object-oriented programming like Abstraction, Encapsulation, Polymorphism, and Inheritance. But, at the same time, it's equally important to know object-oriented design principles. They will help you to create a clean and modular design, which would be easy to test, debug, and maintain in the future.

I have regularly seen Java programmers and developers of various experience level, who have either never heard about these OOP and SOLID design principle, or simply doesn't know what benefits a particular design principle offers and how to apply these design principle in coding.

To do my part, I have jotted down all important object-oriented design principles and putting them here for quick reference. These will at least give you some idea about what they are and what benefits they offer.

I have not put examples, just to keep the article short, but you can find a lot of examples of these design principles in my blog; just use the search bar at the top of the page.

If you are not able to understand a design principle, you should try to do more than one example because sometimes we connect to another example or author better, but you must understand these design principles and learn how to use them in your code.

Another thing you can do is to join a comprehensive object-oriented design course like SOLID Principles: Introducing Software Architecture & Design by Sujith George on Udemy. It has helped me a lot in my understanding and application of these principles.


10 Object-Oriented and SOLID Desing Principles for Programmers

Though the best way of learning any design principle or pattern is a real-world example and understanding the consequences of violating that design principle, the subject of this article is Introducing Object-oriented design principles for Java Programmers, who are either not exposed to it or in the learning phase.

Object Oriented Design Principles in Java Programming

I personally think each of these OOP and SOLID design principle needs an article to explain them clearly, and I will definitely try to do that here, but for now, just get yourself ready for a quick bike ride on design principle town :)

1. DRY (Don't repeat yourself)

Our first object-oriented design principle is DRY, as the name suggests DRY (don't repeat yourself) means don't write duplicate code, instead use Abstraction to abstract common things in one place. If you have a block of code in more than two places, consider making it a separate method, or if you use a hard-coded value more than one time, make them public final constant.

The benefit of this Object-oriented design principle is in maintenance. It's important not to abuse it, duplication is not for code, but for functionality. It means if you used standard code to validate OrderID and SSN, it doesn't mean they are the same, or they will remain the same in the future.

By using standard code for two different functionality or thing, you tightly couple them forever, and when yourOrderId changes its format, your SSN validation code will break.

So beware of such coupling and just don't combine anything which uses similar code but is not related. You can further check out theBasics of Software Architecture & Design Patterns in Java course on Udemy to learn more about writing the right code and best practices to follow while designing a system.

Object Oriented Design Principles Java Programmer should know

2. Encapsulate What Changes

Only one thing is constant in the software field, and that is "Change," So encapsulate the code you expect or suspect to be changed in the future. The benefit of this OOP Design principle is that It's easy to test and maintain proper encapsulated code.

If you are coding in Java, then follow the principle of making variables and methods private by default and increasing access step by step, like from private to protected and not public.

Several of thedesign patterns in Java uses Encapsulation, the Factory design pattern is one example of Encapsulation that encapsulates object creation code and provides flexibility to introduce a new product later with no impact on existing code.

Btw, if you are interested in learning more about design patterns in Java and Object-Oriented Programming, then you must check thisDesign Pattern Library course Pluralsight. It's one of the best collections of design patterns and advice on how to use them in the real world.

SOLID design principles for programmers

3. Open Closed Design Principle

Classes, methods, or functions should be Open for extension (new functionality) and Closed for modification. This is another beautiful SOLID design principle, which prevents someone from changing already tried and tested code.

Ideally, if you are adding new functionality only, then your code should be tested, and that's the goal of the Open Closed Design principle. By the way, the Open-Closed principle is "O" from the SOLID acronym.

Open Closed Design Principle

4. Single Responsibility Principle (SRP)

Single Responsibility Principle is another SOLID design principle, and represent  "S" on the SOLID acronym. As per SRP, there should not be more than one reason for a class to change, or a class should always handle single functionality.

If you put more than one functionality in one Class in Java, it introducescoupling between two functionality, and even if you change one feature, there is a chance you broke coupled functionality,  which requires another round of testing to avoid any surprise on the production environment.

You can further see theSOLID Principles of Object-Oriented Design and Architecture course on Udemy for more real-world examples and to learn about patterns that are based on this principle.

Single Responsibility Principle (SRP)

5. Dependency Injection or Inversion principle

Don't ask for dependency; it will be provided to you by the framework. This has been very well implemented in the Spring framework, the beauty of this design principle is that any class which is injected by the DI framework is easy to test with the mock object and more comfortable to maintain because object creation code is centralized in the framework and the client code is not littered with that.

Dependency Injection or Inversion principle

There are multiple ways to implemented Dependency injection like using bytecode instrumentation, which some AOP (Aspect Oriented Programming) framework like AspectJ does, or by using proxies just like used in Spring. See this example of the IOC and DI design pattern to learn more about this SOLID design principle. It represents "D" on the SOLID acronym.

6. Favor Composition over Inheritance

Always favor composition over inheritance, if possible. Some of you may argue this, but I found that Composition is a lot more flexible than Inheritance.

Composition allows changing the behavior of a class at run-time by setting property during run-time, and by using Interfaces to compose a class, we use polymorphism, which provides flexibility to replace with better implementation at any time.

Favor Composition over Inheritance

Even the classic book Effective Java advises favoring composition over inheritance. See here to learn more about why your Composition is better than Inheritance for reusing code and functionality.

7. Liskov Substitution Principle (LSP)

According to the Liskov Substitution Principle, Subtypes must be substitutable for supertype, i.e. methods or functions which use superclass type must be able to work with the object of subclass without any issue".

 LSP is closely related to the Single responsibility principle and Interface Segregation Principle. If a class has more functionality, then the subclass might not support some of the functionality and does violate LSP.

Liskov Substitution Principle (LSP)

In order to follow LSP SOLID design principle, derived class or subclass must enhance functionality, but not reduce them. LSP represents "L" on the SOLID acronym.  If you are interested in a more real-world example, then theSOLID Principles of Object-Oriented Design course on Pluralsight is an excellent course to start with.

Btw, you would need a Pluralsight membership to get access to this course, which costs around $29 per month or $299 annually (14% discount).

If you don't have Pluralsight membership, I encourage you to get one because it allows you to access their 5000+ online courses on all the latest topics like front-end and back-end development, machine learning, etc. It also includes interactive quizzes, exercises, and the most recent certification material.

It's more like Netflix for Software Developers, and Since learning is an integral part of our job, Pluralsight membership is a great way to stay ahead of your competition.

They also provide a 10-day free trial without any commitment, which is a great way to not just access this course for free but also to check the quality of courses before joining Pluralsight.

8. Interface Segregation Principle (ISP)

The Interface Segregation Principle states that a client should not implement an interface if it doesn't use that. This happens mostly when one interface contains more than one functionality, and the client only needs one functionality and no other.

Interface design is a tricky job because once you release your interface, you can not change it without breaking all implementation.

Interface Segregation Principle (ISP)

Another benefit of this design principle in Java is, the interface has the disadvantage of implementing all methods before any class can use it, so having single functionality means less method to implement. If you don't get the benefit of the interface in coding, then I suggest you read my blog post, the real usage of an interface in Java to learn more.

9. Programming for Interface not implementation

Always program for the interface and not for application; this will lead to flexible code that can work with any new implementation of the interface.

So use interface type on variables, return types of method, or argument type of methods in Java.

This has been advised in many Java books, including in Effective Java and Head First design pattern book.

Programming for Interface not implementation code example

10. Delegation principles

Don't do all stuff by yourself,  delegate it to the respective class. Classical example of delegation design principle is equals() and hashCode() method in Java. In order to compare two objects for equality, we ask the class itself to make a comparison instead of the Client class doing that check.

The key benefit of this design principle is no duplication of code and pretty easy to modify behavior. Event delegation is another example of this principle, where an event is delegated to handlers for handling.

Delegation principle in Java example

Summary

All theseobject-oriented design principleshelp you write flexible and better code by striving for high cohesion and low coupling. The theory is the first step, but what is most important is todevelop the ability to find out when to apply these design principles.

Once you get hold of that, the next step is to learn Design patterns in Java, which uses these design patterns to solve common problems of application development and software engineering.

If you are looking for an excellent course to start with, I suggest you join theSoftware Design Patterns: Best Practices for Software Developers course on Educative, a text-based interactive online learning portal where you can practice patterns right on your browser.

Anyway, here is an excellent summary of all these OOP design principles.

Object oriented and SOLID design principle in Java

Find out whether we are violating any design principle and compromising the flexibility of code, but again as nothing is perfect in this world, don't always try to solve the problem with design patterns and design principles. They are mostly for large enterprise projects which have a longer maintenance cycle.

The bottom line is, professionals programmers should always strive for a highly cohesive and loosely couple solution, code, or design. Looking at open source code from Apache and Google are some excellent ways of learning Java and OOP design principles.

They show us how design principles should be used in coding and Java programs. Java Development Kit follows many design principles like Factory Pattern inBorderFactory class,  Singleton pattern inRuntime class, Decorator pattern on variousjava.io classes.

If you are interested in learning object-oriented principles and patterns, then you can look at my other personal favoriteHead First Object-Oriented Analysis and Design, an excellent book and probably the best material available in object-oriented analysis and design.

Not many programmers know this book because it is often shadowed by its more famous cousin Head First Design Pattern by Eric Freeman, which is more about how these principles come together to create a pattern you can use directly to solve known problems.

These books help a lot to write better code, taking full advantage of various Object-oriented and SOLID design principles.

Btw, if you really interested more in Java coding practices, then readEffective Java 3rd Edition by Joshua Bloch, a gem by the guy who wrote Java Collection API.

Other Java and Programming Resources you may like

  • 10 Things Java Programmer should learn in 2021
  • 10 Books Every Programmer Must Read
  • 10 Courses to learn DevOps in Depth
  • The 2021 Java Developer RoadMap
  • My favorite courses to learn Software Architecture
  • 10 Tips to Improve Your Programming skill
  • 10 Tools Every Software Developer should know
  • 21 Tech skills Java developers should learn in 2021
  • 5 Courses to Learn Software Architecture in Depth
  • 20 Libraries and APIS Java Programmer Should Know
  • 7 Best books to learn about Design Patterns
  • Top 10 Programming languages to Learn in 2021
  • 10 Articles Every Programmer Should Read
  • 10 Framework and Library Java and Web Developer Should Learn

Thanks for reading this article. If you find these object-oriented design principles useful, then please share them with your friends and colleagues. If you have any questions or feedback, then please drop a note.

P. S. - If you are serious about improving your coding skills then as a next step you can also learn design patterns, they are the patterns that use these principles to solve common problems of software development. If you need resources, check out these Design Patterns in Java courses by Dmitri Nestruk on Udemy to learn more about the modern implementation of classic design patterns in Java.

Design a Musical Jukebox Using Object-oriented Principles

Source: https://javarevisited.blogspot.com/2018/07/10-object-oriented-design-principles.html

0 Response to "Design a Musical Jukebox Using Object-oriented Principles"

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel