老师chooseMailFeeCalcMethod这个函数返回Int为什么就错了
这个函数是计算邮费,然后通过重量来选择邮费规则,计算完应该就是一个整形(通过tier1或tier2返回的),怎么chooseMailFeeCalcMethod这个函数需要返回一个函数类型?
这个函数是计算邮费,然后通过重量来选择邮费规则,计算完应该就是一个整形(通过tier1或tier2返回的),怎么chooseMailFeeCalcMethod这个函数需要返回一个函数类型?
2015-01-03
func tier1MailFee( weight:Int ) -> Int {
return 1*weight
}
func tier2MailFee( weight:Int) -> Int {
return 2*weight
}
func chooseMailFeeCalcMethod(weight:Int) ->Int {
return weight <= 10 ? tier1MailFee(weight) : tier2MailFee(weight)
}
func totalPrice( price:Int , weight:Int ) -> Int {
let mailFeeCalc:Int = chooseMailFeeCalcMethod(weight)
return mailFeeCalc + price*weight
}
老师这么改完以后和原来的那个相比有什么弊端或者缺陷?
举报