How could I code a method that will allow a number to be added to another number before a certain month of each year? For example, I would like to be able to have a maximum deposit amount per year in a bank, and then the next year the max deposit amount starts again.
|
|
Based on your comment, what I think you need is a bounds check, and a flag for whether or not the adjustment has happened yet. So, in you deposit method, you would check whether or not the current date is before or after the date on which the max amount resets. If it is after, and you have not reset yet this year, reset. |
|||
|
|
|
You could have something like
You'll have to take care of persistence for amountLeftForDeposit and yearLastUpdated. I think you can get thisYear easily through the Date class. |
|||
|
|
In addition to M. Joanis's answer (see my comment): I'm assuming, the wrapping type is Account or similar.. something that depicts a banking account. Then your deposit method would be synchronized as follows;
Synchronization protects you from concurrent access caused problems. People are most pedantic of their money.. |
|||
|
|