”工欲善其事,必先利其器。“—孔子《论语.录灵公》
首页 > 编程 > 如何在代码中重构朋友依赖性?

如何在代码中重构朋友依赖性?

发布于2025-03-04
浏览:971

How to Refactor a Friend Dependency in Your Code? 
friend依赖性删除重构

在软件开发领域,朋友声明可以引入紧密的耦合和维护问题。 This guide provides a detailed roadmap for refactoring a friend dependency properly, transforming your codebase into a more maintainable and resilient structure.

Unveiling the Need for Refactoring

Consider the following scenario: ClassA and ClassAAccessor share a friend dependency, granting ClassAAccessor access to protected members of ClassA.虽然这看起来很方便,但它带来了几个缺点:

UML 2.2已将朋友刻板印象置换为刻板印象。

Refactoring Step-by-Step

  • Step 1: Introduce an Abstract Interface
  • Replace the friend declaration with a class interface called InternalInterface, splitting the friend relationship into a direct dependency and a call dependency on InternalInterface.

Step 2: Move Operations to the Interface

Identify the operations constituting the call dependency and move them from ClassA to InternalInterface, extending InternalInterface with a protected constructor and marking ClassA's generalization association to InternalInterface as protected.

Step 3: Connect the组件

ClassaAccessor需要对InternalInterface的引用。在classa中实现附加方法,即actactAccessor(),并使用setInternalInternInterFaceref()将其引用到ClastaAccessor。当调用Classa :: actacta :: actactaAccessor()。 班级classaaccessor { 民众: ClassaAccessor(Classa&Classa); void setInternalInterfaceRef(内部接口和newValue); 私人的: 内部接口* internalterfaceref; }; //将引用引用到Internalterface的方法 classa :: actactaccessor(ClassaAccessor&Conscontor){ consector.setInternal Interfaceref(*this); }

最新教程 更多>

免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。

Copyright© 2022 湘ICP备2022001581号-3