应用 SOLID 原则 Ruby :示例和最佳实践

Single Responsibility Principle(SRP)

该原则规定每个类都应承担单一职责。 它强调一个类应该执行一项特定的功能,并且没有太多的理由去改变。

示例:管理用户信息并发送电子邮件通知。

class UserManager  
  def create_user(user_data)  
    # Logic for creating a user  
  end  
end  
  
class EmailService  
  def send_email(email_data)  
    # Logic for sending an email  
  end  
end  

Open/Closed Principle(OCP)

该原则鼓励通过添加新代码而不是修改现有代码来扩展功能。

示例:在电子商务应用程序中处理不同的支付方式。

class PaymentProcessor  
  def process_payment  
    # Common logic for payment processing  
  end  
end  
  
class CreditCardPaymentProcessor < PaymentProcessor  
  def process_payment  
    # Logic for processing credit card payment  
  end  
end  
  
class PayPalPaymentProcessor < PaymentProcessor  
  def process_payment  
    # Logic for processing PayPal payment  
  end  
end  

Liskov Substitution Principle(LSP)

该原则断言派生类的对象应该可以替换基类的对象,而不影响程序的正确性。

示例:管理几何形状。

class Shape  
  def area  
    # Common logic for calculating area  
  end  
end  
  
class Rectangle < Shape  
  def area  
    # Logic for calculating area of rectangle  
  end  
end  
  
class Square < Shape  
  def area  
    # Logic for calculating area of square  
  end  
end  

Interface Segregation Principle(ISP)

该原则建议将接口分解为更小的接口,以避免强制类实现它们不需要的方法。

示例:用于更新和显示数据的界面。

module UpdateableFeature  
  def update_feature  
    # Logic for updating feature  
  end  
end  
  
module DisplayableFeature  
  def display_feature  
    # Logic for displaying feature  
  end  
end  

Dependency Inversion Principle(DIP)

该原则建议使用依赖注入来管理依赖关系。

示例:使用依赖注入来管理依赖关系。

class OrderProcessor  
  def initialize(db_connection, email_service)  
    @db_connection = db_connection  
    @email_service = email_service  
  end  
end  

请记住, 应根据项目的具体目的以及您对 和 的理解灵活地应用 SOLID 中的原则 。 Ruby SOLID Ruby