zoukankan      html  css  js  c++  java
  • 典型重构1 (接口)

    析取类或接口

      将一个类分割为更小、针对性更强的类;从中析取出一系列更精细的接口

    public class InvoiceService
    {
        public string CreateInvoice(Invoice invoice){...}
        public string ProcessPayment(Invoice invoice,double amount){...}
        public double GetAmountOwed(Invoice invoice){...}
        public double GetTotalAmountInvoiceLastFY(Customer customer){...}
        public double GetTotalAmountPaidLastFY(Customer customer){...}
    }

    该类执行了几个相关但却互相分离的功能,供系统的不同部分使用
    通过析取该类的接口,对其进行重构

    public interface IInvoiceCreatingService
    {
        string CreateInvoice(Invoice invoice);
    }
    public interface IInvoicePaymentService
    {
        string ProcessPayment(Invoice invoice,double amount);
        double GetAmountOwed(Invoice invoice);
    }
    public interface IInvoiceReportingService
    {
        double GetTotalAmountInvoiceLastFY(Customer customer);
        double GetTotalAmountPaidLastFY(Customer customer);
    }

    重构结果:

    public class InvoiceService:IInvoiceCreatingService,IInvoicePaymentService,IInvoiceReportingSrvice
    {
        public string CreateInvoice(Invoice invoice){...}
        public string ProcessPayment(Invoice invoice,double amout){...}
        public double GetAmountOwed(Invoice invoice){...}
        public double GetToatlAmountInvoicedLastFY(Customer customer){...}
        public double GetTotalAmountPaidLastFY(Customer customer){...}
    }
  • 相关阅读:
    json 总结
    Django---admin简单功能
    Django---Models
    Django---Template(模板)
    Django---URL、Views
    Django---定义、MVC和MTV模式、命令行工具、配置文件settings
    必学算法
    一个虚拟社交公司的融资历程
    分布式系统,本文引用“courage”的博客
    mysql语句
  • 原文地址:https://www.cnblogs.com/Evelia/p/3493796.html
Copyright © 2011-2022 走看看