1.7 移除对参数的赋值动作

Posted kaizen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1.7 移除对参数的赋值动作相关的知识,希望对你有一定的参考价值。

【1】源代码

 1 int disCount(int inputVal, int quantity, int yearToDate)
 2 {
 3     if (inputVal > 50)
 4     {
 5         inputVal -= 2;
 6     }
 7     if (quantity > 100)
 8     {
 9         inputVal -= 1;
10     }
11     if (yearToDate > 10000)
12     {
13         inputVal -= 4;
14     }
15     return inputVal;
16 }

【2】移除对参数的赋值动作

 1 // 以临时变量取代对参数的赋值动作
 2 int disCount(int inputVal, int quantity, int yearToDate)
 3 {
 4     int result = inputVal;
 5     if (inputVal > 50)
 6     {
 7         result -= 2;
 8     }
 9     if (quantity > 100)
10     {
11         result -= 1;
12     }
13     if (yearToDate > 10000)
14     {
15         result -= 4;
16     }
17     return result;
18 }

【3】总结

代码对一个参数进行赋值。以一个临时变量取代该参数的位置。

 

Good Good Study, Day Day Up.

顺序 选择 循环 总结

以上是关于1.7 移除对参数的赋值动作的主要内容,如果未能解决你的问题,请参考以下文章

第2章 重新组织函数:引入解释性变量分解临时变量和移除对参数的赋值

移除对 Windows SDK 版本的依赖

重构 重构手法

和 jQuery 说再见!Bootstrap 5 将移除对其依赖

和 jQuery 说再见,Bootstrap 5 将移除对其依赖

jQuery再见!Bootstrap 5将移除对其依赖;阿里巴巴将建浙江云计算数据中心;Delphi 10.3.1发布