User Dave L. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T15:22:46Z http://stackoverflow.com/feeds/user/3093 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/104184/is-it-safe-to-get-values-from-a-java-util-hashmap-from-multiple-threads-no-modif 10 Is it safe to get values from a java.util.HashMap from multiple threads (no modification)? Dave L. 2008-09-19T18:11:38Z 2009-11-09T16:37:06Z <p>There is a case where a map will be constructed, and once it is initialized, it will never be modified again. It will however, be accessed (via get(key) only) from multiple threads. Is it safe to use a <code>java.util.HashMap</code> in this way?</p> <p>(Currently, I'm happily using a <code>java.util.concurrent.ConcurrentHashMap</code>, and have no measured need to improve performance, but am simply curious if a simple <code>HashMap</code> would suffice. Hence, this question is <em>not</em> "Which one should I use?" nor is it a performance question. Rather, the question is "Would it be safe?")</p> http://stackoverflow.com/questions/370004/simple-properties-to-string-conversion-in-java 2 Simple properties to string conversion in Java Dave L. 2008-12-15T23:00:57Z 2009-10-02T23:45:10Z <p>Using Java, I need to encode a Map&lt;String, String&gt; of name value pairs to store into a String, and be able to decode it again. These will be stored in a database column, and will probably usually be short and simple, so the common case should produce a simple nice looking line, but shouldn't corrupt the data, even if it contains unexpected characters, etc.</p> <p>How would you choose to do it such that:</p> <ul> <li>The encoded form is a single, human readable line</li> <li>It doesn't require a big library or much context to encode / decode</li> <li>Any delimeters are properly escaped</li> </ul> <p>Url encoding? JSON? Do it yourself? Please specify any helper libraries or methods you'd use.</p> <p>(Edited to specify more context and requirements as requested.)</p> http://stackoverflow.com/questions/967288/how-to-stream-xml-data-using-xom/1479881#1479881 2 Answer by Dave L. for How to stream XML data using XOM? Dave L. 2009-09-25T22:53:20Z 2009-09-25T22:53:20Z <p>I ran in to the same issue, but found it's pretty simple to do what you mentioned as an option and subclass Serializer as follows:</p> <pre><code>public class StreamSerializer extends Serializer { public StreamSerializer(OutputStream out) { super(out); } @Override public void write(Element element) throws IOException { super.write(element); } @Override public void writeXMLDeclaration() throws IOException { super.writeXMLDeclaration(); } @Override public void writeEndTag(Element element) throws IOException { super.writeEndTag(element); } @Override public void writeStartTag(Element element) throws IOException { super.writeStartTag(element); } } </code></pre> <p>Then you can still take advantage of the various XOM config like setIdent, etc. but use it like this:</p> <pre><code>Element rootElement = new Element("resultset"); StreamSerializer serializer = new StreamSerializer(out); serializer.setIndent(4); serializer.writeXMLDeclaration(); serializer.writeStartTag(rootElement); while(hasNextElement()) { serializer.writeElement(nextElement()); } serializer.writeEndTag(rootElement); serializer.flush(); </code></pre> http://stackoverflow.com/questions/418266/what-is-the-fastest-ways-to-loop-through-a-large-data-chunk-on-a-per-bit-basis/418294#418294 5 Answer by Dave L. for What is the fastest way(s) to loop through a large data chunk on a per-bit basis. Dave L. 2009-01-06T21:42:13Z 2009-01-06T21:42:13Z <p>Use a table that maps each byte value (256) to the number of 1's in it. (The # of 0's is just (8 - # of 1's)). Then iterate over the bytes and perform a single lookup for each byte, instead of multiple lookups and comparisons. For example:</p> <pre><code>int onesCount = 0; for (i = 0; i &lt; data-&gt;Count; i++) { byte = &amp;data-&gt;Data[i]; onesCount += NumOnes[byte]; } Stats.FreqOf1 += onesCount; Stats.FreqOf0 += (data-&gt;Count * 8) - onesCount; </code></pre> http://stackoverflow.com/questions/418197/annotating-inherited-properties-for-persistence/418214#418214 4 Answer by Dave L. for Annotating inherited properties for persistence Dave L. 2009-01-06T21:19:59Z 2009-01-06T21:29:22Z <p>Assuming you don't want the superclass itself to represent an entity, you can use <code>@MappedSuperclass</code> on the super class to have subclasses inherit the properties for persistence:</p> <pre><code>@MappedSuperclass class A{ int id; @Id int getId(){}; void setId(int id){}; } </code></pre> <p>Consider making the superclass abstract. See <a href="http://www.hibernate.org/hib_docs/annotations/reference/en/html_single/#d0e939" rel="nofollow">this section</a> of the doc for more details.</p> http://stackoverflow.com/questions/417285/equivalent-code-for-instance-method-synchronization-in-java/417382#417382 10 Answer by Dave L. for Equivalent code for instance method synchronization in Java Dave L. 2009-01-06T17:14:46Z 2009-01-06T17:27:15Z <p>They are equivalent in function, though the compilers I tested (Java 1.6.0_07 and Eclipse 3.4) generate different bytecode. The first generates:</p> <pre><code>// access flags 33 public synchronized someMethod()V RETURN </code></pre> <p>The second generates:</p> <pre><code>// access flags 1 public someMethod()V ALOAD 0 DUP MONITORENTER MONITOREXIT RETURN </code></pre> <p>(Thanks to <a href="http://asm.objectweb.org/" rel="nofollow">ASM</a> for the bytecode printing).</p> <p>So the difference between them persists to the bytecode level, and it's up to the JVM to make their behavior the same. However, they do have the same functional effect - see the <a href="http://java.sun.com/docs/books/jls/third_edition/html/classes.html#8.4.3.6" rel="nofollow">example</a> in the Java Language Specification.</p> <p>It should be noted, that if the method is overridden in a subclass, that it is not necessarily synchronized - so there is no difference in that respect either.</p> <p>I also ran a test to block a thread trying access the monitor in each case to compare what their stack traces would look like in a thread dump, and they both contained the method in question, so there is no difference there either.</p> http://stackoverflow.com/questions/407855/how-does-java-garbage-collector-handle-self-reference/407864#407864 4 Answer by Dave L. for How does Java Garbage collector handle self-reference? Dave L. 2009-01-02T19:57:09Z 2009-01-02T19:57:09Z <p>Java collects any objects that are not reachable. If nothing else has a reference to the entry, then it will be collected, even though it has a reference to itself.</p> http://stackoverflow.com/questions/392375/turn-while-loop-into-math-equation/392382#392382 1 Answer by Dave L. for Turn while loop into math equation? Dave L. 2008-12-25T00:35:16Z 2008-12-25T00:35:16Z <p>I think you want something like this:</p> <pre><code>c = ((int) a + b / 2 * sign(a)) / b </code></pre> <p>That should match your loops except for certain cases where b is odd because the range from -b/2 to b/2 is smaller than b when b is odd.</p> http://stackoverflow.com/questions/392304/how-to-test-a-hash-function/392333#392333 4 Answer by Dave L. for How to test a hash function? Dave L. 2008-12-24T23:23:59Z 2008-12-24T23:23:59Z <p>You have to test your hash function using data drawn from the same (or similar) distribution that you expect it to work on. When looking at hash functions on 64-bit longs, the default Java hash function is excellent if the input values are drawn uniformly from all possible long values.</p> <p>However, you've mentioned that your application uses the long to store essentially two independent 32-bit values. Try to generate a sample of values similar to the ones you expect to actually use, and then test with that.</p> <p>For the test itself, take your sample input values, hash each one and put the results into a set. Count the size of the resulting set and compare it to the size of the input set, and this will tell you the number of collisions your hash function is generating.</p> <p>For your particular application, instead of simply XORing them together, try combining the 32-bit values in ways a typical good hash function would combine two indepenet ints. I.e. multiply by a prime, and add.</p> http://stackoverflow.com/questions/388007/database-operation-that-can-be-applied-repeatedly-and-produce-the-same-results/388055#388055 2 Answer by Dave L. for Database operation that can be applied repeatedly and produce the same results? Dave L. 2008-12-23T02:59:05Z 2008-12-23T02:59:05Z <p>I think what you're looking for is <strong>Idempotent</strong>. Idempotence is a property that can apply to any sort of operation (not just databases). It means that doing the operation any number of times more than once is equivalent to doing it once. I.e. every subsequent operation after the first leaves the state unchanged.</p> <p>For example, the play button on most DVD remotes is idempotent while playing a video because no matter how many times you push it, it keeps playing. However a power button on your remote is usually not idempotent, because it toggles the machine on and off each time. Idempotence is a nice property because you don't always have to know what state a system is in before engaging an operation to try to produce a given state.</p> http://stackoverflow.com/questions/373098/whats-the-average-requests-per-second-for-a-production-web-application/373124#373124 1 Answer by Dave L. for What's the "average" requests per second for a production web application? Dave L. 2008-12-16T23:18:15Z 2008-12-16T23:18:15Z <p>There is no straight answer. Fast is a relative term, and the answer depends hugely on your context and application.</p> http://stackoverflow.com/questions/364454/findbugs-warning-equals-method-should-not-assume-anything-about-the-type-of-its/364464#364464 9 Answer by Dave L. for Findbugs warning: Equals method should not assume anything about the type of its argument Dave L. 2008-12-12T23:10:57Z 2008-12-13T05:39:19Z <p>Typically, when implementing equals you can check to see whether the class of the argument is equal (or compatible) to the implementing class before casting it. Something like this:</p> <pre><code>if (getClass() != obj.getClass()) return false; MyObj myObj = (MyObj) obj; </code></pre> <p>Doing it this way will prevent the FindBugs warning.</p> <p>A side note to address a comment:<br> Some people argue to use <code>instanceof</code> instead of <code>getClass</code> to check type safety. There is a big debate on that, which I was trying not to get into when I noted that you can check for class equality <strong>or</strong> compatibility, but I guess I can't escape it. It boils down to this - if you use <code>instanceof</code> you can support equality between instances of a class and instances of its subclass, but you risk breaking the symmetric contract of <code>equals</code>. Generally I would recommend not to use <code>instanceof</code> unless you know you need it and you know what you are doing. For more information see:</p> <ul> <li><a href="http://www.artima.com/weblogs/viewpost.jsp?thread=4744" rel="nofollow">http://www.artima.com/weblogs/viewpost.jsp?thread=4744</a></li> <li><a href="http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java">http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java</a></li> <li><a href="http://www.macchiato.com/columns/Durable5.html" rel="nofollow">http://www.macchiato.com/columns/Durable5.html</a></li> <li><a href="http://commons.apache.org/lang/api-release/org/apache/commons/lang/builder/EqualsBuilder.html" rel="nofollow">http://commons.apache.org/lang/api-release/org/apache/commons/lang/builder/EqualsBuilder.html</a> (Apache common's implementation helper)</li> <li><a href="http://www.eclipsezone.com/eclipse/forums/t92613.rhtml" rel="nofollow">http://www.eclipsezone.com/eclipse/forums/t92613.rhtml</a> (Eclipse's default equals generator)</li> <li>NetBeans generator also uses getClass()</li> </ul> http://stackoverflow.com/questions/364794/what-does-java-use-to-determine-if-a-key-is-a-duplicate-in-a-map/364823#364823 12 Answer by Dave L. for What does Java use to determine if a key is a duplicate in a Map? Dave L. 2008-12-13T04:13:56Z 2008-12-13T04:13:56Z <p>The <code>Map</code> interface specifies that if two keys are <code>null</code> they are duplicates, otherwise if there's a key <code>k</code> such that <code>key.equals(k)</code>, then there is a duplicate. See the contains or get method here:</p> <p><a href="http://java.sun.com/javase/6/docs/api/java/util/Map.html#containsKey" rel="nofollow">http://java.sun.com/javase/6/docs/api/java/util/Map.html#containsKey</a>(java.lang.Object)</p> <p>However, it's up to the <code>Map</code> implementation how to go about performing that check, and a <code>HashMap</code> will use a hash code to narrow the potential keys it will check with the <code>equals</code> method. So in practice, for a typical hash based map, to check for duplicates a map will take the hashcode (probably mod some size), and use <code>equals</code> to compare against any keys whose hashcode mod the same size gives the same remainder.</p> http://stackoverflow.com/questions/360748/computational-complexity-of-fibonacci-sequence/360896#360896 1 Answer by Dave L. for Computational complexity of Fibonacci Sequence Dave L. 2008-12-11T21:03:08Z 2008-12-11T21:03:08Z <p>It is bounded on the lower end by <code>2^(n/2)</code> and on the upper end by 2^n (as noted in other comments). And an interesting fact of that recursive implementation is that it has a tight asymptotic bound of Fib(n) itself. These facts can be summarized:</p> <pre><code>T(n) = Ω(2^(n/2)) (lower bound) T(n) = O(2^n) (upper bound) T(n) = Θ(Fib(n)) (tight bound) </code></pre> <p>The tight bound can be reduced further using its <a href="http://en.wikipedia.org/wiki/Fibonacci_number#Closed_form_expression" rel="nofollow">closed form</a> if you like.</p> http://stackoverflow.com/questions/360766/java-formal-type-parameter-definition-generics/360796#360796 7 Answer by Dave L. for Java formal type parameter definition (Generics) Dave L. 2008-12-11T20:39:29Z 2008-12-11T20:39:29Z <p>Java generics does not support union types (this parameter can be A OR B).</p> <p>On a related note that may be of interest to some, it does support multiple bounds, if you want to enforce multiple restrictions. Here's an example from the JDK mentioned in the Java <a href="http://java.sun.com/j2se/1.5/pdf/generics-tutorial.pdf" rel="nofollow">generics tutorial</a>:</p> <pre><code>public static &lt;T extends Object &amp; Comparable&lt;? super T&gt;&gt; T max(Collection&lt;? extends T&gt; coll) </code></pre> http://stackoverflow.com/questions/357851/in-java-how-to-zip-file-from-byte-array/357892#357892 9 Answer by Dave L. for In Java: How to zip file from byte[] array? Dave L. 2008-12-10T22:48:17Z 2008-12-10T22:48:17Z <p>You can use Java's java.util.zip.ZipOutputStream to create a zip file in memory. For example:</p> <pre><code>public static byte[] zipBytes(String filename, byte[] input) throws IOException { ByteArrayOutputStream baos = new ByteArrayOutputStream(); ZipOutputStream zos = new ZipOutputStream(baos); ZipEntry entry = new ZipEntry(filename); entry.setSize(input.length); zos.putNextEntry(entry); zos.write(input); zos.closeEntry(); zos.close(); return baos.toByteArray(); } </code></pre> http://stackoverflow.com/questions/354625/what-are-good-language-learning-puzzles-problems/354748#354748 3 Answer by Dave L. for What are good language learning puzzles/problems? Dave L. 2008-12-10T00:38:31Z 2008-12-10T00:38:31Z <p>See many related questions:</p> <ul> <li><a href="http://stackoverflow.com/questions/10936/projects-for-learning-a-new-language">http://stackoverflow.com/questions/10936/projects-for-learning-a-new-language</a></li> <li><a href="http://stackoverflow.com/questions/24692/where-can-you-find-funeducational-programming-challenges">http://stackoverflow.com/questions/24692/where-can-you-find-funeducational-programming-challenges</a></li> <li><a href="http://stackoverflow.com/questions/185742/beginner-practical-programming-problems">http://stackoverflow.com/questions/185742/beginner-practical-programming-problems</a></li> <li><a href="http://stackoverflow.com/questions/53887/where-do-you-go-to-tickle-your-brain-to-get-programming-challenges">http://stackoverflow.com/questions/53887/where-do-you-go-to-tickle-your-brain-to-get-programming-challenges</a></li> <li><a href="http://stackoverflow.com/questions/6327/what-are-your-programming-excercises">http://stackoverflow.com/questions/6327/what-are-your-programming-excercises</a></li> <li><a href="http://stackoverflow.com/questions/294198/games-to-improve-programming-skills">http://stackoverflow.com/questions/294198/games-to-improve-programming-skills</a></li> </ul> http://stackoverflow.com/questions/299304/why-does-javas-hashcode-in-string-use-31-as-a-multiplier/299369#299369 2 Answer by Dave L. for Why does Java's hashCode() in String use 31 as a multiplier? Dave L. 2008-11-18T16:58:03Z 2008-11-18T16:58:03Z <p>I'm not sure, but I would guess they tested some sample of prime numbers and found that 31 gave the best distribution over some sample of possible Strings.</p> http://stackoverflow.com/questions/296245/what-do-you-put-on-your-cubicle-walls/296247#296247 15 Answer by Dave L. for What do you put on your cubicle walls? Dave L. 2008-11-17T17:32:22Z 2008-11-17T17:32:22Z <p>IDE keyboard shortcuts</p> http://stackoverflow.com/questions/288861/eclipse-optimize-imports-to-include-static-imports/289289#289289 2 Answer by Dave L. for Eclipse Optimize Imports to Include Static Imports Dave L. 2008-11-14T05:02:18Z 2008-11-14T05:02:18Z <p>If you highlight the method Assert.assertEquals(val1, val2) and hit Ctrl-Shirt-M (Add Import), it will add it as a static import, at least in Eclipse 3.4.</p> http://stackoverflow.com/questions/279619/whats-your-favorite-implementation-of-producing-the-fibonacci-sequence/279668#279668 16 Answer by Dave L. for What's your favorite implementation of producing the fibonacci sequence? Dave L. 2008-11-11T00:29:53Z 2008-11-11T00:29:53Z <pre><code>static int[] fibs = { 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584, 4181, 6765, 10946, 17711, 28657, 46368, 75025, 121393, 196418, 317811, 514229, 832040, 1346269, 2178309, 3524578, 5702887, 9227465, 14930352, 24157817, 39088169, 63245986, 102334155, 165580141, 267914296, 433494437, 701408733, 1134903170, 1836311903, }; static int fib(int n) { return fibs[n]; } </code></pre> http://stackoverflow.com/questions/240320/how-can-i-wrap-a-method-so-that-i-can-kill-its-execution-if-it-exceeds-a-specifie/240651#240651 0 Answer by Dave L. for How can I wrap a method so that I can kill its execution if it exceeds a specified timeout? Dave L. 2008-10-27T17:08:37Z 2008-10-27T17:08:37Z <p>This question should prove helpful:</p> <p><a href="http://stackoverflow.com/questions/94011/how-to-abort-a-thread-in-a-fast-and-clean-way-in-java">How to abort a thread in a fast and clean way in java?</a></p> http://stackoverflow.com/questions/216796/big-o-notation-homework-code-fragment-algorithm-analysis/219366#219366 5 Answer by Dave L. for Big O Notation Homework--Code Fragment Algorithm Analysis? Dave L. 2008-10-20T18:18:09Z 2008-10-20T18:18:09Z <p>Fragment 7 is O(n^5), not O(n^4) as the currently accepted comment claims. Otherwise, it's correct.</p> http://stackoverflow.com/questions/191998/attach-source-issue-in-eclipse/193385#193385 3 Answer by Dave L. for Attach Source Issue in Eclipse Dave L. 2008-10-10T23:47:10Z 2008-10-10T23:47:10Z <p>Try pointing it at a directory containing the top level package directly, "D:/Data/Download/commons-httpclient-3.1/src/java" for you. What worked for me was creating a new src zip file containing the "org" folder and everything beneath it.</p> <p>Here's my .classpath entry, (which works for me) in case it helps:</p> <pre><code>&lt;classpathentry kind="lib" path="/blib/java/commons-httpclient-3.1/commons-httpclient-3.1.jar" sourcepath="/blib/java/commons-httpclient-3.1/commons-httpclient-3.1-src.zip"/&gt; </code></pre> http://stackoverflow.com/questions/169713/whats-the-toughest-bug-you-ever-found-and-fixed/169739#169739 24 Answer by Dave L. for What's the toughest bug you ever found and fixed? Dave L. 2008-10-04T04:30:38Z 2008-10-04T04:30:38Z <p>A bug where you come across some code, and after studying it you conclude, "There's no way this could have ever worked!" and suddenly it stops working though it always did work before.</p> http://stackoverflow.com/questions/151777/how-do-i-save-an-android-applications-state/151822#151822 6 Answer by Dave L. for How do I save an Android application's state? Dave L. 2008-09-30T05:03:44Z 2008-09-30T05:03:44Z <p>The <code>savedInstanceState</code> is only for saving state associated with a current instance of an Activity, for example current navigation or selection info, so that if Android destroys and recreates an Activity, it can come back as it was before. See the documentation for <a href="http://code.google.com/android/reference/android/app/Activity.html#onCreate(android.os.Bundle)" rel="nofollow"><code>onCreate</code></a> and <a href="http://code.google.com/android/reference/android/app/Activity.html#onSaveInstanceState(android.os.Bundle)" rel="nofollow"><code>onSaveInstanceState</code></a></p> <p>For more long lived state, consider using a SQLite database, a file, or preferences. See <a href="http://code.google.com/android/reference/android/app/Activity.html#SavingPersistentState" rel="nofollow">Saving Persistent State</a>.</p> http://stackoverflow.com/questions/86780/is-the-contains-method-in-java-lang-string-case-sensitive/86832#86832 6 Answer by Dave L. for Is the Contains Method in java.lang.String Case-sensitive? Dave L. 2008-09-17T19:41:55Z 2008-09-27T22:21:48Z <p>Yes, contains is case sensitive. You can use java.util.regex.Pattern with the CASE_INSENSITIVE flag for case insensitive matching:</p> <pre><code>Pattern.compile(Pattern.quote(s2), Pattern.CASE_INSENSITIVE).matcher(s1).find(); </code></pre> <p><strong>EDIT:</strong> If s2 contains regex special characters (of which there are many) it's important to quote it first. I've corrected my answer since it is the first one people will see, but vote up Matt Quail's since he pointed this out.</p> http://stackoverflow.com/questions/144474/java-arrays-vectors/144486#144486 12 Answer by Dave L. for Java: Arrays & Vectors Dave L. 2008-09-27T21:08:14Z 2008-09-27T21:27:55Z <p>Try using a <code>Map&lt;String, List&lt;String&gt;&gt;</code>. This will allow you to use Strings as keys / indices into the outer map and get a result being a list of Strings as values. You'll probably want to use a <code>HashMap</code> for the outer map and <code>ArrayList</code>'s for the inner lists.</p> <p>If you want some clean code that is similar to the PHP you gave to initialize it, you can do something like this:</p> <pre><code>Map&lt;String, List&lt;String&gt;&gt; columns = new HashMap&lt;String, List&lt;String&gt;&gt;() {{ put("col_name_1", Arrays.asList("col_val_1", "col_val_2", "col_val_n")); put("col_name_2", Arrays.asList("col_val_1", "col_val_2", "col_val_n")); put("col_name_n", Arrays.asList("col_val_1", "col_val_2", "col_val_n")); }}; </code></pre> http://stackoverflow.com/questions/142357/what-are-the-best-jvm-settings-for-eclipse/142384#142384 0 Answer by Dave L. for What are the best JVM settings for Eclipse? Dave L. 2008-09-26T22:38:43Z 2008-09-26T22:38:43Z <p>Here's what I use (though I have them in the shortcut instead of the settings file):</p> <p>eclipse.exe -showlocation -vm "C:\Java\jdk1.6.0_07\bin\javaw.exe" -vmargs -Xms256M -Xmx768M -XX:+UseParallelGC -XX:MaxPermSize=128M</p> http://stackoverflow.com/questions/93839/bit-manipulation-and-output-in-java/93925#93925 1 Answer by Dave L. for Bit manipulation and output in Java Dave L. 2008-09-18T16:02:48Z 2008-09-26T17:56:07Z <p>Assuming the String has a multiple of eight bits, (you can pad it otherwise), take advantage of Java's built in parsing in the Integer.valueOf method to do something like this:</p> <pre><code>String s = "11001010001010101110101001001110"; byte[] data = new byte[s.length() / 8]; for (int i = 0; i &lt; data.length; i++) { data[i] = (byte) Integer.parseInt(s.substring(i * 8, (i + 1) * 8), 2); } </code></pre> <p>Then you should be able to write the bytes to a <code>FileOutputStream</code> pretty simply.</p> <p>On the other hand, if you looking for effeciency, you should consider not using a String to store the bits to begin with, but build up the bytes directly in your compressor.</p> http://stackoverflow.com/questions/104184/is-it-safe-to-get-values-from-a-java-util-hashmap-from-multiple-threads-no-modif/1702190#1702190 Comment by Dave L. on Is it safe to get values from a java.util.HashMap from multiple threads (no modification)? Dave L. 2009-11-11T23:15:42Z 2009-11-11T23:15:42Z This is &quot;safe&quot; in that it enforces the immutability, but it doesn't address the thread safety issue. If the map is safe to access with the UnmodifiableMap wrapper then it is safe without it, and vice versa. http://stackoverflow.com/questions/967288/how-to-stream-xml-data-using-xom/1479881#1479881 Comment by Dave L. on How to stream XML data using XOM? Dave L. 2009-09-28T16:47:50Z 2009-09-28T16:47:50Z Agreed on both counts. http://stackoverflow.com/questions/418266/what-is-the-fastest-ways-to-loop-through-a-large-data-chunk-on-a-per-bit-basis Comment by Dave L. on What is the fastest way(s) to loop through a large data chunk on a per-bit basis. Dave L. 2009-01-06T22:17:11Z 2009-01-06T22:17:11Z Could you say what you're trying to do with each bit (after accessing them)? Some context would probably be helpful. http://stackoverflow.com/questions/392375/turn-while-loop-into-math-equation/392382#392382 Comment by Dave L. on Turn while loop into math equation? Dave L. 2008-12-25T05:24:17Z 2008-12-25T05:24:17Z Shreevatsar: That's not true. If a = b = 10, then a &gt;= b/2, so the later loop will run once, and c = 1. http://stackoverflow.com/questions/389741/continue-keyword-in-java/389744#389744 Comment by Dave L. on Continue keyword in Java Dave L. 2008-12-23T19:20:59Z 2008-12-23T19:20:59Z It's worth noting that for loops execute the update code before re-evaluating the condition after a continue. http://stackoverflow.com/questions/370004/simple-properties-to-string-conversion-in-java/370029#370029 Comment by Dave L. on Simple properties to string conversion in Java Dave L. 2008-12-16T00:49:35Z 2008-12-16T00:49:35Z In its context, it's to read/display as a single line. Why use properties if you're just going to URL/Base64/Something encode it into a long string? http://stackoverflow.com/questions/370004/simple-properties-to-string-conversion-in-java/370039#370039 Comment by Dave L. on Simple properties to string conversion in Java Dave L. 2008-12-16T00:02:06Z 2008-12-16T00:02:06Z Thanks for the thoughtful responses, I'd vote you up again if I could, but I don't think anything quite meets all the requirements. Pipes need escaping, and unprintable chars are not very human readable. http://stackoverflow.com/questions/370004/simple-properties-to-string-conversion-in-java/370029#370029 Comment by Dave L. on Simple properties to string conversion in Java Dave L. 2008-12-15T23:40:50Z 2008-12-15T23:40:50Z Thanks for the suggestion, however I'm looking for something that encodes to a single line. http://stackoverflow.com/questions/370004/simple-properties-to-string-conversion-in-java/370039#370039 Comment by Dave L. on Simple properties to string conversion in Java Dave L. 2008-12-15T23:39:57Z 2008-12-15T23:39:57Z Yes, it is an external requirement to fit in a single column. http://stackoverflow.com/questions/369856/how-do-you-join-two-mysql-tables-where-the-data-is-not-in-the-other-table/369864#369864 Comment by Dave L. on How do you JOIN two MySQL tables where the data is NOT in the other table? Dave L. 2008-12-15T22:09:59Z 2008-12-15T22:09:59Z one additional problem is that the question asked how to do it without sub selects http://stackoverflow.com/questions/365743/multi-threading-objects-being-set-to-null-while-using-them/365748#365748 Comment by Dave L. on Multi-threading: Objects being set to null while using them. Dave L. 2008-12-13T21:35:04Z 2008-12-13T21:35:04Z Exactly. Just make sure that mouseBall is volatile if you're going to do this without a synchronized block. http://stackoverflow.com/questions/364454/findbugs-warning-equals-method-should-not-assume-anything-about-the-type-of-its/364464#364464 Comment by Dave L. on Findbugs warning: Equals method should not assume anything about the type of its argument Dave L. 2008-12-12T23:53:58Z 2008-12-12T23:53:58Z Sometimes it makes sense to check unrelated types, but usually it's unnecessary. When you do, you have to be very careful to make sure the equivalence relation is symmetric and transitive. http://stackoverflow.com/questions/360265/what-are-the-alternatives-to-comparing-the-equality-of-two-objects/360305#360305 Comment by Dave L. on What are the alternatives to comparing the equality of two objects? Dave L. 2008-12-11T18:30:05Z 2008-12-11T18:30:05Z Be careful with this template. Don't use the super.equals call unless you're implementing a subclass to a class that has already implemented equals() - otherwise this method just reduces to reference equality. Also the line with the class cast has a syntax error. http://stackoverflow.com/questions/354625/what-are-good-language-learning-puzzles-problems Comment by Dave L. on What are good language learning puzzles/problems? Dave L. 2008-12-10T17:00:43Z 2008-12-10T17:00:43Z I don't think &quot;exact duplicate&quot; means what you think it means. http://stackoverflow.com/questions/288966/running-time-of-random-sort/288977#288977 Comment by Dave L. on Running Time of Random Sort Dave L. 2008-12-02T22:20:09Z 2008-12-02T22:20:09Z No. Big-O notation describes an upper bound and can be used when analyzing different cases. Theta, Omega, etc. describe other bounds and can also be applied to worst case analysis.