I'm an intermediate java coder, writing a librarian Java app, and for some reason I just can't figure out whether I should use dueDate.after(today) OR dueDate.before(today) method as to deciding if the book is overdue. I've gotten quite some contradictory values by typing both the methods. Hence, I'm also assuming there is some other bug in my code as well, so it would be nice if you can conform which is the correct method so that I can move on the fixing the other bug.
|
|
|||||||||||||
|
|
You need Maybe it's easier if you swap the objects around? You'd get |
|||
|
|
|
Remember that the Also, Java If you want to compare only the day, without checking the time during that day, create all of your due dates to be at a specific time, like midnight. For example, suppose that a book is due October 26. The due date could be midnight, October 27.
The somewhat awkward negation accounts for the case when it is now exactly 12:00 AM Oct. 27. |
|||
|
|
|
the other side of things
|
|||
|
|
|
The only difference between As for your unspecified other problems: are you aware that |
|||
|
|
|
It depends on what you want to achieve. Is dueDate the date you want to set when lending a book? The due date is derived from the lending date of the book, so I would try an approach like With questions like this it helps if you make it explicit for yourself which objects are involved and what their relations are before you design the actions between the objects. |
|||
|
|