重构读书笔记-6_6-Remove Assignments to Parameters+Replace Method With Method Object
重构第六章7.RemoveAssignmentstoParameters(去除对参数的赋值)以一个临时变量取代该参数的位置你的代码对一个参数进行赋值作用Example:intdisCount(intinputVal,intquantity,intyearToDate){if(inputVal>50)inputVal-=2;returninputVal;}Analyse:在函数中去除对参数的修改、赋