Hello! In this lesson, we're revisiting Encapsulation, Private Attributes, and Private Methods in Object-Oriented Programming (OOP). Imagine encapsulation as an invisible fence safeguarding a garden from outside interference, keeping data and methods safe within. Within this garden, certain plants (Private Attributes and Methods) are only for the gardener's eyes. These are crucial for making your classes more robust and secure!
Encapsulation in OOP wraps up data and methods into a class
. This organizational approach tidies the code and reinforces security. If you were to code a multiplayer game, for example, you could create a Player
class, encapsulating data (health
, armor
, stamina
) and methods (receiveDamage
, shieldHit
, restoreHealth
).
Now, player
is an instance of the Player
class on which you can call methods.
In JavaScript, a #
before the attribute or method name designates it as private. Note that the constructor itself cannot be private.
Private attributes and methods are inaccessible directly from an instance. This arrangement helps maintain integrity.
Private Attributes, which can only be altered via class methods, limit outside interference. For instance, a BankAccount
class might feature a #balance
private attribute that one could change only through deposits or withdrawals.
Here, #balance
is private, thus ensuring the integrity of the account balance. It can't be accessed directly from outside the class.
Like private attributes, private methods are accessible only within their class. Here's an example:
Here, addYearlyInterest
is a public method that calls the private method #addInterest
.
In JavaScript, getters and setters provide a way to access and mutate private attributes indirectly while maintaining control over how values are retrieved or changed. This remains in line with the encapsulation principle by providing a controlled interface to interact with private data.
Getters allow access to the value of a private attribute in a safe, controlled manner. Here's how you can define a getter for a private attribute:
In this example, the balance
getter method provides a safe way to access the private #balance
attribute.
Setters allow modification of the value of a private attribute while providing a controlled interface. Here’s how you can define a setter for a private attribute:
In this example, the balance
setter method ensures that the #balance
is only set to non-negative values, adding a layer of validation.
By using getters and setters, you can add logic for validating or transforming data, making your class more flexible and secure while adhering to encapsulation principles.
Great job refreshing your understanding of encapsulation, private attributes, and private methods concepts in JavaScript! Correctly understanding and applying these foundational principles of OOP makes your code concise, robust, and secure.
Coming up next is hands-on practice. Keep up the good work — exciting exercises are just around the corner!
