我的代码有什么问题? [英] what is wrong with my code ?

查看:87
本文介绍了我的代码有什么问题?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

    public class AccumulateSavingsBatch {
    private Bank bank;
    public void setBank(Bank bank)
    {
        this.bank=bank;
    }
    public void doBatch()
    {
        for (Customer c : bank)
        {
            for (Account a : c)
            {
                if(a instanceof SavingAccount)
                {
                    a.accumulateIntersest();
                }
            }
        }
    }
}



foreach不适用于表达式类型,客户和帐户y会出现此错误?



foreach not applicable to expression type this error appears with customer and account y??

推荐答案

您的客户和银行类应实现IEnumerable< t>接口.

对于实现IEnumerable,IEnumerable< t,IList,IList< t>的类的每个作品.等等.
Your Customer and Bank Classes Should Implement the interface IEnumerable<t>.

For each works with the class which implements IEnumerable, IEnumerable<t>, IList, IList<t> etc.


这篇关于我的代码有什么问题?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆