Java - Common Gotchas - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T08:08:22Zhttp://stackoverflow.com/feeds/question/169815http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/169815/java-common-gotchas16Java - Common GotchasAlan2008-10-04T05:41:08Z2009-12-06T11:59:31Z
<p>In the same spirit of other platforms, it seemed logical to follow up with this question: What are common non-obvious mistakes in Java? Things that seem like they ought to work, but don't.</p>
<p>I won't give guidelines as to how to structure answers, or what's "too easy" to be considered a gotcha, since that's what the voting is for.</p>
<p>See also:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas">Perl - Common gotchas</a></li>
<li><a href="http://stackoverflow.com/questions/66117/aspnet-common-gotchas">.NET - Common gotchas</a></li>
</ul>
http://stackoverflow.com/questions/169815/java-common-gotchas/169824#1698241Answer by Alan for Java - Common GotchasAlan2008-10-04T05:49:43Z2008-10-04T05:49:43Z<p>Going first, here's one I caught today. It had to do with <code>Long</code>/<code>long</code> confusion.</p>
<pre><code>public void foo(Object obj) {
if (grass.isGreen()) {
Long id = grass.getId();
foo(id);
}
}
private void foo(long id) {
Lawn lawn = bar.getLawn(id);
if (lawn == null) {
throw new IllegalStateException("grass should be associated with a lawn");
}
}
</code></pre>
<p>Obviously, the names have been changed to protect the innocent :)</p>
http://stackoverflow.com/questions/169815/java-common-gotchas/169838#1698384Answer by anjanb for Java - Common Gotchasanjanb2008-10-04T05:56:30Z2008-10-04T05:56:30Z<p>if you have a method that has the same name as the constructor BUT has a return type. Although this method looks like a constructor(to a noob), it is NOT.</p>
<p>passing arguments to the main method -- it takes some time for noobs to get used to.</p>
<p>passing . as the argument to classpath for executing a program in the current directory.</p>
<p>Realizing that the name of an Array of Strings is not obvious</p>
<p>hashCode and equals : a lot of java developers with more than 5 years experience don't quite get it.</p>
<p>Set vs List</p>
<p>Till JDK 6, Java did not have NavigableSets to let you easily iterate through a Set and Map. </p>
http://stackoverflow.com/questions/169815/java-common-gotchas/169839#16983912Answer by David Plumpton for Java - Common GotchasDavid Plumpton2008-10-04T05:57:24Z2008-10-04T05:57:24Z<p>Try reading <a href="http://www.javapuzzlers.com/" rel="nofollow">Java Puzzlers</a> which is full of scary stuff, even if much of it is not stuff you bump into every day. But it will destroy much of your confidence in the language.</p>
http://stackoverflow.com/questions/169815/java-common-gotchas/169853#16985313Answer by David for Java - Common GotchasDavid2008-10-04T06:09:46Z2008-10-04T06:16:44Z<p>Comparing equality of objects using <code>==</code> instead of <code>.equals()</code> -- which behaves completely differently for primitives. </p>
<p>This gotcha ensures newcomers are befuddled when <code>"foo" == "foo"</code> but <code>new String("foo") != new String("foo")</code>.</p>
http://stackoverflow.com/questions/169815/java-common-gotchas/169997#16999711Answer by extraneon for Java - Common Gotchasextraneon2008-10-04T08:37:33Z2008-10-04T08:37:33Z<p>Overriding equals() but not hashCode()</p>
<p>It can have really unexpected results when using maps, sets or lists.</p>
http://stackoverflow.com/questions/169815/java-common-gotchas/170049#1700498Answer by oxbow_lakes for Java - Common Gotchasoxbow_lakes2008-10-04T09:30:36Z2008-10-04T09:30:36Z<p>I think a very sneaky one is the <code>String.substring</code> method. This re-uses the same underlying <code>char[]</code> array as the original string with a different <code>offset</code> and <code>length</code>.</p>
<p>This can lead to very hard-to-see memory problems. For example, you may be parsing extremely large files (<code>XML</code> perhaps) for a few small bits. If you have converted the whole file to a <code>String</code> (rather than used a <code>Reader</code> to "walk" over the file) and use <code>substring</code> to grab the bits you want, you are still carrying around the full file-sized <code>char[]</code> array behind the scenes. I have seen this happen a number of times and it can be very difficult to spot.</p>
<p>In fact this is a perfect example of why <em>interface</em> can never be fully separated from <em>implementation</em>. And it was a perfect introduction (for me) a number of years ago as to why you should be suspicious of the quality of 3rd party code.</p>
http://stackoverflow.com/questions/169815/java-common-gotchas/170054#1700541Answer by oxbow_lakes for Java - Common Gotchasoxbow_lakes2008-10-04T09:35:21Z2008-10-04T09:35:21Z<p>Another one I'd like to point out is the (too prevalent) drive to make APIs generic. Using well-designed generic code is fine. Designing your own is complicated. <strong>Very complicated!</strong></p>
<p>Just look at the sorting/filtering functionality in the new Swing <code>JTable</code>. It's a complete nightmare. It's obvious that you are likely to want to chain filters in real life but I have found it impossible to do so without just using the raw typed version of the classes provided.</p>
http://stackoverflow.com/questions/169815/java-common-gotchas/170083#1700835Answer by dhiller for Java - Common Gotchasdhiller2008-10-04T10:22:46Z2008-10-04T10:22:46Z<p>Manipulating Swing components from outside the event dispatch thread can lead to bugs that are extremely hard to find. This is a thing even we (as seasoned programmers with 3 respective 6 years of java experience) forget frequently! Sometimes these bugs sneak in after having written code right and refactoring carelessly afterwards...</p>
<p>See this <a href="http://java.sun.com/docs/books/tutorial/uiswing/concurrency/dispatch.html" rel="nofollow">tutorial</a> why you <strong>must</strong>.</p>
http://stackoverflow.com/questions/169815/java-common-gotchas/170127#1701271Answer by Stephen Denne for Java - Common GotchasStephen Denne2008-10-04T11:01:18Z2008-10-04T11:01:18Z<p>The default hash is non-deterministic, so if used for objects in a HashMap, the ordering of entries in that map can change from run to run.</p>
http://stackoverflow.com/questions/169815/java-common-gotchas/170169#1701699Answer by John Sinclair for Java - Common GotchasJohn Sinclair2008-10-04T11:25:26Z2008-10-04T11:25:26Z<p>SimpleDateFormat is not thread safe.</p>
http://stackoverflow.com/questions/169815/java-common-gotchas/170173#1701731Answer by Darron for Java - Common GotchasDarron2008-10-04T11:28:06Z2008-10-04T11:28:06Z<p>(un)Boxing and Long/long confusion. Contrary to pre-Java 5 experience, you can get a NullPointerException on the 2nd line below.</p>
<pre><code>Long msec = getSleepMsec();
Thread.sleep(msec);
</code></pre>
<p>If getSleepTime() returns a null, unboxing throws.</p>
http://stackoverflow.com/questions/169815/java-common-gotchas/170338#1703386Answer by Tom Hawtin - tackline for Java - Common GotchasTom Hawtin - tackline2008-10-04T13:37:29Z2008-10-04T13:37:29Z<pre><code>List<Integer> list = new java.util.ArrayList<Integer>();
list.add(1);
list.remove(1); // throws...
</code></pre>
<p>The old APIs were not designed with boxing in mind, so overload with primitives and objects.</p>
http://stackoverflow.com/questions/169815/java-common-gotchas/171073#1710730Answer by PhiLho for Java - Common GotchasPhiLho2008-10-04T21:59:10Z2008-10-04T21:59:10Z<p>Among the common pitfalls, well known but still bitting occasionally programmers, there is the classical <code>if (a = b)</code> which is found in all C-like languages.</p>
<p>One that bites lot of newbies, and even some distracted more experienced programmers (found it in our code), the <code>if (str == "foo")</code>. Note that I always wondered by Sun overrode the + sign for strings but not the == one, at least for simple cases (case sensitive).</p>
<p>And I also saw <code>if (a == b & c == d)</code> or something like that. It works (curiously) but we lost the logical operator shortcut (don't try to write: <code>if (r != null & r.isSomething())</code>!).</p>
http://stackoverflow.com/questions/169815/java-common-gotchas/171108#1711086Answer by MBCook for Java - Common GotchasMBCook2008-10-04T22:16:18Z2008-10-04T22:16:18Z<p>There are two that annoy me quite a bit.</p>
<h2>Date/Calendar</h2>
<p>First, the Java Date and Calendar classes are seriously messed up. I know there are proposals to fix them, I just hope they succede. </p>
<p>Calendar.get(Calendar.DAY_OF_MONTH) is 1-based<br/>
Calendar.get(Calendar.MONTH) is <strong>0-based</strong></p>
<h2>Auto-boxing preventing thinking</h2>
<p>The other one is Integer vs int (this goes for any primitive version of an object). This is specifically an annoyance caused by not thinking of Integer as different from int (since you can treat them the same much of the time due to auto-boxing).</p>
<pre><code>int x = 5;
int y = 5;
Integer z = new Integer(5);
Integer t = new Integer(5);
System.out.println(5 == x); // Prints true
System.out.println(x == y); // Prints true
System.out.println(x == z); // Prints true (auto-boxing can be so nice)
System.out.println(5 == z); // Prints true
System.out.println(z == t); // Prints SOMETHING
</code></pre>
<p>Since z and t are objects, even they though hold the same value, they are (most likely) different objects. What you really meant is:</p>
<pre><code>System.out.println(z.equals(t)); // Prints true
</code></pre>
<p>This one can be a pain to track down. You go debugging something, everything looks fine, and you finally end up finding that your problem is that 5 != 5 when both are objects.</p>
<p>Being able to say</p>
<pre><code>List<Integer> stuff = new ArrayList<Integer>();
stuff.add(5);
</code></pre>
<p>is <em>so</em> nice. It made Java so much more usable to not have to put all those "new Integer(5)"s and "((Integer) list.get(3)).intValue()" lines all over the place. But those benefits come with this gotcha.</p>
http://stackoverflow.com/questions/169815/java-common-gotchas/171537#1715375Answer by anjanb for Java - Common Gotchasanjanb2008-10-05T05:16:55Z2008-10-05T05:16:55Z<p>this one has trumped me a few times and I've heard quite a few experienced java devs wasting a lot of time.</p>
<p>ClassNotFoundException --- you know that the class is in the classpath BUT you are NOT sure why the class is NOT getting loaded.</p>
<p>Actually, this class has a static block. There was an exception in the static block and someone ate the exception. they should NOT. They should be throwing ExceptionInInitializerError. So, always look for static blocks to trip you. It also helps to move any code in static blocks to go into static methods so that debugging the method is much more easier with a debugger.</p>
http://stackoverflow.com/questions/169815/java-common-gotchas/171885#1718855Answer by John Nilsson for Java - Common GotchasJohn Nilsson2008-10-05T12:23:11Z2008-10-05T12:23:11Z<p>Integer division</p>
<pre><code>1/2 == 0 not 0.5
</code></pre>
http://stackoverflow.com/questions/169815/java-common-gotchas/171893#1718933Answer by John Nilsson for Java - Common GotchasJohn Nilsson2008-10-05T12:26:51Z2008-10-05T12:26:51Z<p>Floats</p>
<p>I don't know many times I've seen</p>
<pre><code>floata == floatb
</code></pre>
<p>where the "correct" test should be </p>
<pre><code>Math.abs(floata - floatb) < 0.001
</code></pre>
<p>I really wish BigDecimal with a literal syntax was the default decimal type...</p>
http://stackoverflow.com/questions/169815/java-common-gotchas/171942#1719420Answer by questzen for Java - Common Gotchasquestzen2008-10-05T13:04:59Z2008-10-05T13:04:59Z<p>IMHO
1. Using vector.add(Collection) instead of vector.addall(Collection). The first adds the collection object to vector and second one adds the contents of collection.
2. Though not related to programming exactly, the use of xml parsers that come from multiple sources like xerces, jdom. Relying on different parsers and having their jars in the classpath is a nightmare.</p>
http://stackoverflow.com/questions/169815/java-common-gotchas/171949#1719494Answer by riadd for Java - Common Gotchasriadd2008-10-05T13:11:17Z2008-10-05T13:11:17Z<p>Immutable strings, which means that certain methods don't change the original object but instead return a modified object copy. When starting with Java I used to forget this all the time and wondered why the replace method didn't seem to work on my string object.</p>
<pre><code>String text = "foobar";
text.replace("foo", "super");
System.out.print(text); // still prints "foobar" instead of "superbar"
</code></pre>
http://stackoverflow.com/questions/169815/java-common-gotchas/171985#1719851Answer by rydberg2029 for Java - Common Gotchasrydberg20292008-10-05T13:38:06Z2008-10-05T13:38:06Z<p>The non-unified type system contradicts the object orientation idea. Even though everything doesn't have to be heap-allocated objects, the programmer should still be allowed to treat primitive types by calling methods on them.</p>
<p>The generic type system implementation with type-erasure is horrible, and throws most students off when they learn about generics for the first in Java: Why do we still have to typecast if the type parameter is already supplied? Yes, they ensured backward-compatibility, but at a rather silly cost.</p>
http://stackoverflow.com/questions/169815/java-common-gotchas/215354#2153543Answer by Claudiu for Java - Common GotchasClaudiu2008-10-18T18:08:16Z2008-10-18T18:08:16Z<p>This one I just came across:</p>
<pre><code>double[] aList = new double[400];
List l = Arrays.asList(aList);
//do intense stuff with l
</code></pre>
<p>Anyone see the problem?</p>
<p><hr></p>
<p>What happens is, <code>Arrays.asList()</code> expects an array of object types (Double[], for example). It'd be nice if it just threw an error for the previous ocde. However, <code>asList()</code> can also take arguments like so:</p>
<pre><code>Arrays.asList(1, 9, 4, 4, 20);
</code></pre>
<p>So what the code does is create a <code>List</code> with one element - a <code>double[]</code>.</p>
<p>I should've figured when it took 0ms to sort a 750000 element array...</p>
http://stackoverflow.com/questions/169815/java-common-gotchas/1400149#14001491Answer by butterchicken for Java - Common Gotchasbutterchicken2009-09-09T14:39:51Z2009-09-09T14:39:51Z<pre><code>"a,b,c,d,,,".split(",").length
</code></pre>
<p>returns 4, <strong>not</strong> 7 as you might (and I certainly <em>did</em> expect). <code>split</code> ignores all trailing empty Strings returned. That means:</p>
<pre><code>",,,a,b,c,d".split(",").length
</code></pre>
<p>returns 7 (oh, so those empty ones <strong>mean</strong> something now???) To get what I would think of as the "least astonishing" behaviour, you need to do something quite astonishing:</p>
<pre><code>"a,b,c,d,,,".split(",",-1).length
</code></pre>
<p>to get 7.</p>
http://stackoverflow.com/questions/169815/java-common-gotchas/1400192#14001920Answer by mkoryak for Java - Common Gotchasmkoryak2009-09-09T14:47:39Z2009-09-09T14:47:39Z<p>I think i big gotcha that would always stump me when i was a young programmer, was the <strong>concurrent modification exception</strong> when removing from an array that you were iterating:</p>
<pre><code> List list = new ArrayList();
Iterator it = list.iterator();
while(it.hasNext()){
//some code that does some stuff
list.remove(0); //BOOM!
}
</code></pre>
http://stackoverflow.com/questions/169815/java-common-gotchas/1400240#14002402Answer by Bill the Lizard for Java - Common GotchasBill the Lizard2009-09-09T14:54:57Z2009-09-09T14:54:57Z<p>Not really specific to Java, since many (but not all) languages implement it this way, but the <code>%</code> operator isn't a true modulo operator, as it works with negative numbers. This makes it a <em>remainder</em> operator, and can lead to some surprises if you aren't aware of it.</p>
<p>The following code would appear to print either "even" or "odd" but it doesn't.</p>
<pre><code>public static void main(String[] args)
{
String a = null;
int n = "number".hashCode();
switch( n % 2 ) {
case 0:
a = "even";
break;
case 1:
a = "odd";
break;
}
System.out.println( a );
}
</code></pre>
<p>The problem is that the hash code for "number" is negative, so the <code>n % 2</code> operation in the switch is also negative. Since there's no case in the switch to deal with the negative result, the variable <code>a</code> never gets set. The program prints out <code>null</code>.</p>
<p>Make sure you know how the <code>%</code> operator works with negative numbers, no matter what language you're working in.</p>