首页 > 代码库 > 1.7 移除对参数的赋值动作
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 移除对参数的赋值动作
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。