博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
步步为营 .NET 代码重构学习笔记 五、分解函数和替换算法(Replace Method And Substitute Algorithm)...
阅读量:6043 次
发布时间:2019-06-20

本文共 2332 字,大约阅读时间需要 7 分钟。

Replace Method with Method Object

概述

将这个函数放进一个单独对象中,如此一来局部变量就成了对象内的值域(field),然后你可以在同一个对象中将这个大型函数分解为数个小型函数.

动机(Motivation)

小型函数优美动人,只要将相对独立的代码从大型函数中提炼出来,就可以大在提高代码的可读性.

示例

public int Gamma(int inputValue, int quantity, int yearToDate)       {           int importantValue1 = inputValue * quantity + DateTime.Now.Minute;           int importantValue2 = inputValue * yearToDate + 100;           if ((yearToDate - importantValue1) > 100)               importantValue2 -= 20;           int importantValue3 = importantValue2 * 7;           return importantValue3 - 2 * importantValue1;       }

改为

private int importantValue1;        private int importantValue2;        private int importantValue3;        public int Gamma(int inputValue, int quantity, int yearToDate)        {            importantValue1 = inputValue * quantity + DateTime.Now.Minute;            importantValue2 = inputValue * yearToDate + 100;            ImportantThing(yearToDate);            importantValue3 = importantValue2 * 7;            return importantValue3 - 2 * importantValue1;        }        private void ImportantThing(int yearToDate)        {            if ((yearToDate - importantValue1) > 100)                importantValue2 -= 20;        }

Substitute Algorithm(替换你的算法)

概述

将函数本体(method body)替换为另一个算法。

动机(Motivation)

如果你发现做一件事可以有更清晰的方式,就应该以较清晰的方式取代复杂方式。可以把一些复杂的东西分解为较简单的小块,但有时你就是必须壮士断腕,删掉整个算法,代之较简单的算法。

示例

public string FoundPerson(string[] people)        {            for (int i = 0; i < people.Length; i++)            {                if (people[i].Equals("Don"))                {                    return "Don";                }                if (people[i].Equals("John"))                {                    return "John";                }                if (people[i].Equals("Kent"))                {                    return "Kent";                }            }            return "";        }

改为

public string FoundPerson(string[] people)        {            List
candidates = new List
() { "Don", "John", "Kent" }; for (int i = 0; i < people.Length; i++) { if (candidates.Contains(people[i])) return people[i]; } return ""; }

总结

小型函数优美动人,用较清晰方式取代复杂方式,易于阅读,

转载于:https://www.cnblogs.com/springyangwc/archive/2011/05/23/2054716.html

你可能感兴趣的文章
表单文件上传与文件下载
查看>>
下午考
查看>>
创建字符设备的三种方法
查看>>
走在网页游戏开发的路上(六)
查看>>
nginx 配置的server_name参数(转)
查看>>
Uva592 Island of Logic
查看>>
C++基础代码--20余种数据结构和算法的实现
查看>>
footer固定在页面底部的实现方法总结
查看>>
nginx上传文件大小
查看>>
HDU 2243 考研路茫茫——单词情结(自动机)
查看>>
Dubbo OPS工具——dubbo-admin & dubbo-monitor
查看>>
Dungeon Master ZOJ 1940【优先队列+广搜】
查看>>
Delphi 中的 XMLDocument 类详解(5) - 获取元素内容
查看>>
2013年7月12日“修复 Migration 测试发现的 Bug”
查看>>
学习vue中遇到的报错,特此记录下来
查看>>
CentOS7 编译安装 Mariadb
查看>>
jstl格式化时间
查看>>
一则关于运算符的小例
查看>>
centos7 ambari2.6.1.5+hdp2.6.4.0 大数据集群安装部署
查看>>
cronexpression 详解
查看>>