一個類別應該只有一個改變的理由。
定義 - 在這種情況下,責任被認為是改變的原因之一。
該原則指出,如果我們有兩個原因要更改某個類,則必須將功能拆分為兩個類別。每個類別僅處理一項職責,如果將來我們需要進行一項更改,我們將在處理它的類別中進行更改。當我們需要對具有更多職責的類別進行更改時,該更改可能會影響與該類別的其他職責相關的其他功能。
程式碼之前單一職責原則
using System; using System.Net.Mail; namespace SolidPrinciples.Single.Responsibility.Principle.Before { class Program{ public static void SendInvite(string email,string firstName,string lastname){ if(String.IsNullOrWhiteSpace(firstName)|| String.IsNullOrWhiteSpace(lastname)){ throw new Exception("Name is not valid"); } if (!email.Contains("@") || !email.Contains(".")){ throw new Exception("Email is not Valid!"); } SmtpClient client = new SmtpClient(); client.Send(new MailMessage("Test@gmail.com", email) { Subject="Please Join the Party!"}) } } }
遵循單一職責原則編寫程式碼
using System; using System.Net.Mail; namespace SolidPrinciples.Single.Responsibility.Principle.After{ internal class Program{ public static void SendInvite(string email, string firstName, string lastname){ UserNameService.Validate(firstName, lastname); EmailService.validate(email); SmtpClient client = new SmtpClient(); client.Send(new MailMessage("Test@gmail.com", email) { Subject = "Please Join the Party!" }); } } public static class UserNameService{ public static void Validate(string firstname, string lastName){ if (string.IsNullOrWhiteSpace(firstname) || string.IsNullOrWhiteSpace(lastName)){ throw new Exception("Name is not valid"); } } } public static class EmailService{ public static void validate(string email){ if (!email.Contains("@") || !email.Contains(".")){ throw new Exception("Email is not Valid!"); } } } }
以上是如何使用C#實現單一職責原則?的詳細內容。更多資訊請關注PHP中文網其他相關文章!