-
Recent Posts
Recent Comments
- keiki on SimpleDateFormat in multithreaded environment
- EugeneChung on SimpleDateFormat in multithreaded environment
- keiki on Autoboxing: Traps and Advantages
- John-Paul Cunliffe on Autoboxing: Traps and Advantages
- ZeeMan on Unknown Java Features Part 1: BitSet
Archives
Categories
Meta
Tags
- Anti-Pattern
- autoboxing
- benchmark
- BitSet
- book
- boolean
- boolean array
- cache
- Calendar
- clean code
- code coverage
- common
- datetime
- FIFO
- Formatting
- harness
- hello world
- Integer
- JaCoCo
- Java
- Java 7
- Java 8
- JAXB
- jmh
- jodatime
- LinkedHashMap
- Linux
- logging
- LRU
- maven
- memory
- micro
- micro benchmarking
- multithreading
- Pattern
- Performance
- SimpleDateFormat
- sonar
- static
- String
- StringBuilder
- tips
- Tooling
- unknown features
- XML
-
Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use.
To find out more, including how to control cookies, see here: Cookie Policy
Tag Archives: Calendar
Java 8 contains similar JodaTime API
Java 8 will finally have a new time/date API (It’s about time). The new API is similar to the Jodatime API (one of the best APIs available). http://joda-time.sourceforge.net/
calendar.equals is evil (especially over RMI)
And again I stumbled across a problem of the date/time API of the JVM. This time it is the java.util.Calendar object. The Calendar object violates against the x.compareTo(y)==0 == x.equals(y) recommendation. It’s not a … Continue reading