java Programming Glossary: jeremy
Is it safe to get values from a java.util.HashMap from multiple threads (no modification)? http://stackoverflow.com/questions/104184/is-it-safe-to-get-values-from-a-java-util-hashmap-from-multiple-threads-no-modi concurrency hashmap share improve this question Jeremy Manson the god when it comes to the Java Memory Model has a.. to determine immutability. For more info on the topic read Jeremy's blog posts Part 1 on Immutability in Java http jeremymanson.blogspot.com..
What is the Iterable interface used for? http://stackoverflow.com/questions/1059127/what-is-the-iterable-interface-used-for java iterable share improve this question Besides what Jeremy said its main benefit is that it has its own bit of syntactic..
Immutability and reordering http://stackoverflow.com/questions/14624365/immutability-and-reordering understand my point about reordering this blog post by Jeremy Manson who is one of the authors of the Chapter 17 of the JLS..
Is there a SoftHashMap in Java? http://stackoverflow.com/questions/264582/is-there-a-softhashmap-in-java but it is probably not what you want as Java expert Jeremy Manson explains below you'll find the link . Not that I know.. not so intrusive as having a separate background thread. Jeremy Manson recommends for any cache using this feature to avoid..
Decode Base64 data in Java http://stackoverflow.com/questions/469695/decode-base64-data-in-java
How to nicely format floating numbers to String without unnecessary decimal 0? http://stackoverflow.com/questions/703396/how-to-nicely-format-floating-numbers-to-string-without-unnecessary-decimal-0 with another format code EDIT The answers by Tom E. and Jeremy S. are unacceptable as they both arbitrarily rounds to 2 decimal..
Why do we usually use `||` not `|`, what is the difference? http://stackoverflow.com/questions/7101992/why-do-we-usually-use-not-what-is-the-difference without calling timeConsumingCall Another benefit as Jeremy and Peter mentioned for short circuiting is the null reference..
|