代码重构之移除对参数的赋值

2022-04-21 13:30:56 浏览数 (1)

意图

区别按值传递和按引用传递,提升代码的清晰度如果只以参数表示被传递进来的东西,代码会清晰很多

示例

代码语言:javascript复制
/**
 * 移除对参数的赋值之前
 * Created by luo on 2017/4/25.
 */
public class RemoveAssignmentsToParametersBefore {
    void discount (int inputVal, int quantity, int yearToDate){
        if (inputVal > 50){
            inputVal -= 20;
        }
    }
}
/**
 * 移除对参数的赋值之后
 * Created by luo on 2017/4/25.
 */
public class RemoveAssignmentsToParametersAfter {
    void discount (int inputVal, int quantity, int yearToDate){
        int result = inputVal;
        if (inputVal > 50){
            result -= 20;
        }
    }
}

0 人点赞