为了账号安全,请及时绑定邮箱和手机立即绑定

有没有更好的方法来迭代结构的字段?

有没有更好的方法来迭代结构的字段?

Go
温温酱 2022-07-25 12:04:25
我从 JSON 文件中填充了这两个结构:type transaction struct {    Datetime time.Time       `json:"datetime"`    Desc     string          `json:"desc"`    Cash     decimal.Decimal `json:"cash"`}type branch struct {    BranchName    string        `json:"branch-name"`    Currency      string        `json:"currency"`    Deposits      []transaction `json:"deposits"`    Withdrawals   []transaction `json:"withdrawals"`    Fees          []transaction `json:"fees"`}我需要实现一个方法来返回 和 的所有字段的总和,Cash但Deposits我不确定如何将它们抽象为“带有字段的事物切片”。我当前的实现只是重复相同的代码三遍:WithdrawalsFeesCashfunc (b branch) getCash(datetime time.Time) decimal.Decimal {    cash := decimal.NewFromFloat(0)    for _, deposit := range b.Deposits {        if deposit.Datetime.Before(datetime) {            cash = cash.Add(deposit.Cash)        }    }    for _, withdrawal := range b.Withdrawals {        if withdrawal.Datetime.Before(datetime) {            cash = cash.Add(withdrawal.Cash)        }    }    for _, fee := range b.Fees {        if fee.Datetime.Before(datetime) {            cash = cash.Add(fee.Cash)        }    }    return cash}有一个更好的方法吗?
查看完整描述

2 回答

?
慕田峪4524236

TA贡献1875条经验 获得超5个赞

通过循环切片切片来消除重复代码:


for _, transactions := range [][]transaction{b.Deposits, b. Withdrawals, b.Fees} {

    for _, transaction := range transactions {

        if transaction.Datetime.Before(datetime) {

            cash = cash.Add(transaction.Cash)

        }

    }

}


查看完整回答
反对 回复 2022-07-25
?
白衣非少年

TA贡献1155条经验 获得超0个赞

您可以附加到一个数组并对其进行迭代:


func (b branch) getCash(datetime time.Time) decimal.Decimal {

    cash := decimal.NewFromFloat(0)

    arr := append(b.Deposits, b.Fees...)

    arr = append(arr, b.Withdrawals...)

    

    for _, a := range arr {

        if a.Datetime.Before(datetime) {

            cash = cash.Add(a.Cash)

        }

    }

    return cash

}


查看完整回答
反对 回复 2022-07-25
  • 2 回答
  • 0 关注
  • 101 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号