public void AddAccountItem(AccountItem accountItem) //修改为Add,名称不需要 { if (accountItem != null) { accountItemList.Add(accountItem); //if 允许输入null,进行判断--公有的方法,别人 } }
public void AddAccountItem(AccountItem accountItem) { accountItemList.Add(accountItem); }
//--------------------------- // Matches 能否用 Predicate 函数来完成? public static bool Matches(AccountItem accountItem, DateTime dateTime, Category category) { return(accountItem.IsSameMonthOfSameYear(dateTime) && accountItem.category == category); }