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

1.7 移除对参数的赋值动作

时间:2017-08-10 18:05:18      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:disco   code   ret   blog   bsp   nbsp   logs   选择   log   

【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 移除对参数的赋值动作

标签:disco   code   ret   blog   bsp   nbsp   logs   选择   log   

原文地址:http://www.cnblogs.com/Braveliu/p/7340298.html

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