重構手法之簡化條件表達式【2】

来源:http://www.cnblogs.com/liuyoung/archive/2017/11/27/7887082.html
-Advertisement-
Play Games

返回總目錄 本小節目錄 Consolidate Duplicate Conditional Fragments(合併重覆的條件片段) Remove Control Flag(移除控制標記) 3Consolidate Duplicate Conditional Fragments(合併重覆的條件片段) ...


返回總目錄

本小節目錄

3Consolidate Duplicate Conditional Fragments(合併重覆的條件片段)

概要

在條件表達式的每個分支上有著相同的一段代碼。

將這段重覆代碼搬到條件表達式之外。

動機

如果有一組條件表達式的所有分支都執行了相同的某段代碼,將這段代碼搬移到條件表達式外面。這樣才能更清楚地表明哪些東西隨條件的變化而變化、哪些東西保持不變。

範例

假如有如下代碼:

class Deal
{
    public double Price { get; set; }
    private bool IsSpecialDeal()
    {
        //your code here
        return true;
    }

    private void Send()
    {
        //your code here
    }

    public double GetTotalPrice()
    {
        double total;
        if (IsSpecialDeal())
        {
            total = Price * 0.95;
            Send();
        }
        else
        {
            total = Price * 0.98;
            Send();
        }
        return total;
    }
}

由於條件表達式的兩個分支都執行了Send()函數,所以將其移到條件表達式的外圍:

class Deal
{
    public double Price { get; set; }
    private bool IsSpecialDeal()
    {
        //your code here
        return true;
    }

    private void Send()
    {
        //your code here
    }

    public double GetTotalPrice()
    {
        double total;
        if (IsSpecialDeal())
        {
            total = Price * 0.95;
        }
        else
        {
            total = Price * 0.98;
        }
        Send();
        return total;
    }
}

這樣的重構手法同時也可以避免重覆代碼。

小結

我們在對待異常時,也是這樣做的。如果try塊和catch塊內都重覆執行了同一段代碼,可以將其移到finally塊內。

4Remove Control Flag(移除控制標記)

概要

在一系列布爾表達式中,某個變數帶著“控制標記”(control flag)的作用。

以break語句或return語句取代控制標記。

動機

在一系列條件表達式中,常常會看到用以判斷何時停止條件檢查的控制標記:

set done to false

while not done

  if(condition)

    do something

    set done to true

  next step of loop

這樣的控制標記大大降低了條件表達式的可讀性。以break語句或return語句取代控制標記,會帶來很大的便利。

範例:以break取代簡單的控制標記

下列函數用來檢查一系列人名之中是否包含兩個可疑人物的名字:

class Person
{
    public void CheckSecurity(string[] people)
    {
        bool found = false;
        foreach (var person in people)
        {
            if (!found)
            {
                if (person == "Don")
                {
                    SendAlert();
                    found = true;
                }
                if (person == "John")
                {
                    SendAlert();
                    found = true;
                }
            }
        }
    }

    private void SendAlert()
    {

    }
}

這種情況下很容易找出控制標記:當變數found被賦予true時,搜索就結束。這樣我們可以引入break語句替換掉對found變數賦值的語句,替換完成後刪除控制標記的引用:

class Person
{
    public void CheckSecurity(string[] people)
    {
        foreach (var person in people)
        {
            if (person == "Don")
            {
                SendAlert();
                break;
            }
            if (person == "John")
            {
                SendAlert();
                break;
            }
        }
    }

    private void SendAlert()
    {

    }
}

範例:以return返回控制標記

我們將上面的例子稍微改動下:

class Person
{
    public void CheckSecurity(string[] people)
    {
        string found = string.Empty;
        foreach (var person in people)
        {
            if (found == string.Empty)
            {
                if (person == "Don")
                {
                    SendAlert();
                    found = "Don";
                }
                if (person == "John")
                {
                    SendAlert();
                    found = "John";
                }
            }
        }
        OtherMethod(found);
    }

    private void SendAlert()
    {

    }

    private void OtherMethod(string found)
    {

    }
}

在這裡,變數found做了兩件事:既是控制標記,也是運算結果。遇到這種情況,一般都是先把計算found變數的代碼提煉到一個獨立函數中:

class Person
{
    public void CheckSecurity(string[] people)
    {
        string found = FoundMiscreant(people);
        OtherMethod(found);
    }

    private string FoundMiscreant(string[] people)
    {
        string found = string.Empty;
        foreach (var person in people)
        {
            if (person == "Don")
            {
                SendAlert();
                found = "Don";
            }
            if (person == "John")
            {
                SendAlert();
                found = "John";
            }
        }
        return found;
    }
    private void SendAlert()
    {

    }

    private void OtherMethod(string found)
    {

    }
}

然後以return語句取代控制語句,並且完全去掉控制標記:

class Person
{
    public void CheckSecurity(string[] people)
    {
        string found = FoundMiscreant(people);
        OtherMethod(found);
    }

    private string FoundMiscreant(string[] people)
    {
        foreach (var person in people)
        {
            if (person == "Don")
            {
                SendAlert();
                return "Don";
            }
            if (person == "John")
            {
                SendAlert();
                return "John";
            }
        }
        return string.Empty;
    }
    private void SendAlert()
    {

    }

    private void OtherMethod(string found)
    {

    }
}

如果返回值是void,也可以用return語句取代控制標記,只不過是一個空的return。

小結

如果以此辦法去處理帶有副作用的函數,需要先將查詢函數和修改函數分離。

 

To Be Continued……

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1 using System; 2 using System.Collections.Generic; 3 using System.Web; 4 using System.Web.Services; 5 using System.Data; 6 using Topevery.EOffice.Log ...
  • 原文http://www.360doc.com/content/13/0829/14/4513754_310723961.shtml 一、作用 AutoResetEvent和ManualResetEvent可用於控制線程暫停或繼續,擁有重要的三個方法:WaitOne、Set和Reset。 這三個方法 ...
  • 1.關於websphere MQ的常用名詞(針對Websphere MQ7.5版本) 隊列管理器:為應用程式提供消息傳遞服務的程式。使用消息隊列介面(MQI)的應用程式可以將消息放置到隊列並可從隊列中獲得消息,隊列管理器確保消息可以發送至正確的隊列或傳遞至另一個隊列管理器。 本地隊列:隊列管理器接收 ...
  • win+R輸入cmd,以管理員身份運行cmd; 安裝: cd C:\Windows\Microsoft.NET\Framework\v4.0.30319(InstallUtil.exe的路徑,註意InstallUtil.exe的版本號需要和項目的版本號相同)\InstallUtil.exe D:\d ...
  • 寫Code First 時(使用的是MySql資料庫),添加好EntityFrame、MySql.Data 、MySql.Data.Entity後 ,寫好TestDbContext類。 運行時報出一個"MySql.Data.MySqIClient.MySqlProviderSevices”違反了繼承 ...
  • 如圖,左圖是效果,右圖是原理,右圖X軸代表圖像一個像素點的灰度,Y軸代表RGB三個顏色對應的偽彩色圖顏色。代碼如下: for (int y = 0; y < height; y++) { for (int x = 0; x < width; x++) { Color c = bmp.GetPixel ...
  • 針對WCF分散式消息隊列MSMQ大大提高了處理能力,無論是發送方還是接收方都不用等待對方返回成功消息,但是不適合Client與Server端的實時交互。WCF分散式消息隊列,在處理日誌方面,效果還是很顯著的。當然,針對消息隊列的處理技術,有很多種,例如:ActiveMQ、RabbitMQ、ZeroM... ...
  • 演示產品下載地址:http://www.jinhusns.com ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...