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

代码重构之内联函数

时间:2017-04-24 22:52:32      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:内联函数   after   more   去除   nbsp   span   bool   live   boolean   

意图

- 内部代码和函数名称同样清晰易读,去除无用的间接层

示例

/**

 * 内联函数之前

 * Created by luo on 2017/4/18.

 */

public class InlineMethodBefore {

 

    private Integer _numberOfLateDeliveries ;

 

    int getRating(){

        return (moreThanFiveLateDliveries()) ? 2 : 1;

    }

 

    private boolean moreThanFiveLateDliveries() {

        return _numberOfLateDeliveries > 5;

    }

}

 

/**

 * 内联函数之后

 * Created by luo on 2017/4/18.

 */

public class InlineMethodAfter {

    private Integer _numberOfLateDeliveries ;

 

    int getRating(){

        return (_numberOfLateDeliveries > 5) ? 2 : 1;

    }

 

}

 

代码重构之内联函数

标签:内联函数   after   more   去除   nbsp   span   bool   live   boolean   

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

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