本文介绍了我的代码有什么问题?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
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??
推荐答案
这篇关于我的代码有什么问题?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!