I want to get the year/month/day values of a Date object, but the docs say the getYear(), etc. methods are deprecated. It suggests to use Calendar instead, but I was wondering if it's okay to use the deprecated methods instead? It's just a toy program written in Processing, but I'll be doing quite a bit of Date operations on several objects, so speed might be a concern.
| ||||
|
feedback
|
|
Either one is fine. I would stick with If there's a viable alternative, I would stay away from deprecated things unless you have a good reason to do so, such as speed. I doubt switching from | |||
|
feedback
|
|
I would suggest you look at Yoda Time which is a much nicer library to work with for Date/Time tasks, in my opinion. | |||||
feedback
|
|
If an API is deprected it might be dangerous or buggy. If suggested alternatives exist you should use them (and don't get used to ignore them). Using Calendar is not that hard to get what you need. If you have special calendar operations to do you can try Joda as mentioned by Charles Goodwin - but for your use case there seems to be no need to depend on a third party library. | |||
|
feedback
|
|
I would not recommend using the Date methods. I see no advantage whatsoever. Calling that method on a As you've noted, these methods are deprecated. This means that they can be removed from the API without notice at any time. The reality is that it can only happen on a JVM upgrade. Your code will only stop working if you switch to a JVM that happens to have them removed. So the risk is small that your code will suddenly stop working, but it's not zero. | |||
|
feedback
|
java.util.Calendaras suggested on this post. stackoverflow.com/questions/2654025/… – Bitmap Jul 26 '11 at 11:32