This repository is a short exercise designed for you to explore Encapsulation which is one of the four pillars of Object-Oriented Programming (OOP).
-
Fork this repository
-
To run the program, go to the Main class which is the entry point and run it using IntelliJ
-
There are two models
DodgyBankAccountandSecureBankAccount, these are located in the model directory.
Use the following questions to guide your exploration and learning! ๐บ
-
Run the
mainmethod on theMainclass, what is it doing? What is being outputted to the console? -
Look at the
DodgyBankAccount, this class is not well-encapsulated. Can you note down the problems with how the class is designed, and the ways it is being misused? -
Compare and contrast the
DodgyBankAccountand theSecureBankAccount, how is theSecureBankAccountdifferent to theDodgyBankAccount? How is it designed to prevent it from being misused? Are there instances of better method names for clearer abstraction?
-
Now that you've had the chance to explore a well-encapsulated vs. poorly-encapsulated class, your next challenge is to put your newly minted skills into practice ๐ช!
-
Refactor the
WeatherReporterclass located in the model directory. -
You may want to think about Encapsulation here. Do the methods follow the Single Responsibility Principle (SRP)? Are the method names suitable? Are there any magic numbers / hardcoded numbers in the code that needs to be represented by a constant? Are there better ways to write the code?
-
As an added challenge, could you write some unit tests to test the class' methods?