代码需要能够同时引用两个图书馆编号,如果它们相等,则从数组中删除借阅者。
它不会让我运行另一个类的方法,因为它是一个静态上下文。我不知道还有什么办法解决这个问题。
这是我到目前为止所拥有的:
public boolean removeBorrower(String libraryNumber)
{
if(libraryNumber == null)
return false;
else if(Borrower.getLibraryNumber().equals(libraryNumber)))
borrowers.remove(Borrower);
return true;
}