Home > Article > Backend Development > Can You Remove Friend Dependencies Without Sacrificing Functionality?
Rethinking the Friend Dependency for Concurrent Access Management
Introduction
In this article, we delve into a challenge faced when attempting to remove a "friend" dependency between two classes responsible for managing synchronized read/write access to a shared resource. The friend dependency was introduced as a means to provide ClassAAccessor with access to the protected methods of ClassA, ensuring that clients would only interact with ClassA through ClassAAccessor and its lifecycle behavior.
Understanding the Friend Dependency
The original design relied on a friend dependency between ClassA and ClassAAccessor. This dependency allowed ClassAAccessor to access the protected methods of ClassA, enabling it to manage the locking and unlocking of shared resources. However, using friend dependencies is discouraged for various reasons, including their potential to introduce maintenance issues.
Refactoring Process
To remove the friend dependency, we follow a three-step process:
Advantages and Disadvantages
This approach has advantages such as:
However, there are also some disadvantages to consider:
Conclusion
By following the outlined steps, we have successfully refactored the design to remove the friend dependency while maintaining the desired functionality. This refactor introduces several advantages, including improved maintainability, while also highlighting the potential trade-offs involved in such changes.
The above is the detailed content of Can You Remove Friend Dependencies Without Sacrificing Functionality?. For more information, please follow other related articles on the PHP Chinese website!