码迷,mamicode.com
首页 > 其他好文 > 详细

代码重构之引入解释性变量

时间:2017-04-24 23:03:36      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:表达式   public   示例   oid   return   strong   macos   class   表达   

意图

  • 临时变量可以帮助你将表达式分解为比较容易管理的形式

  • 在较长的算法中,可以运用临时变量来解释每一步运算的意义

示例

/**
 * 引入解释性变量之前
 * Created by luo on 2017/4/23.
 */
public class IntroduceExplainingVariableBefore {
    private String platform;
    private String browser;
    private int resize = 0;

    public void test(){
        if ((platform.toUpperCase().indexOf("MAC") > -1) && (browser.toUpperCase().indexOf("IE") > -1) && wasInitialized() && resize > 0){
            //do something
        }
    }

    private boolean wasInitialized() {
        return false;
    }
}
/**
 * 引入解释性变量之后
 * Created by luo on 2017/4/23.
 */
public class IntroduceExplainingVariableAfter {
    private String platform;
    private String browser;
    private int resize = 0;

    public void test() {
        final boolean isMacOs = platform.toUpperCase().indexOf("MAC") > -1;
        final boolean isIEBrowser = browser.toUpperCase().indexOf("IE") > -1;
        final boolean wasResized = resize > 0;

        if (isMacOs && isIEBrowser && wasInitialized() && wasResized) {
            //do something
        }
    }

    private boolean wasInitialized() {
        return false;
    }
}

 

代码重构之引入解释性变量

标签:表达式   public   示例   oid   return   strong   macos   class   表达   

原文地址:http://www.cnblogs.com/luoxiaolei/p/6759119.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!