166
votes
82answers
22k views
Hidden Features of Java
After reading Hidden Features of C# I wondered, What are some of the hidden features of Java?
120
votes
115answers
10k views
Most useful free Java libraries?
I've never seen a good list of free Java libraries.
What are some of your can't-live-without Java libraries?
Note: to keep this poll as useful as possible, please remember:
Pos …
103
votes
10answers
21k views
How accurate are the technical arguments in JWZ’s ten-year-old “java sucks” article with today’s Java?
I'm currently using Java in a larger project and was curious which of the technical arguments in JWZ's famous "java sucks" article were still valid ten years later. The article sta …
83
votes
24answers
30k views
Fastest way to determine if an integer’s square root is an integer
I'm looking for the fastest way to determine if a long value is a perfect square (i.e. its square root is another integer). I've done it the easy way, by using the built-in Math.s …
72
votes
52answers
7k views
Is it just me or are interfaces overused?
Ok, I may resort to a tad ranting here, so let me apologize in advance, but I'm really curious if others find this pattern annoying too (and I wonder if it is a justifiable pattern …
62
votes
19answers
13k views
How to avoid “!= null” statements in Java?
I work with java all day long. The most used idiom (code snippet) I'm programing in java, is to test if an object != null before I use it, to avoid a NullPointerException of course …
52
votes
22answers
5k views
What’s the best way of unit testing private methods?
How do I use jUnit to test a class that has internal private methods? It seems bad to change the access modifier for a method just to be able to run a test. Thanks.
51
votes
11answers
2k views
How can “while (i == i) ;” be a non-infinite loop?
I just got a question that I can't answer.
Suppose you have this loop definition in Java:
while (i == i) ;
What is the type of i and the value of i if the loop is not an infini …
46
votes
63answers
6k views
Hidden features of Eclipse
Alright it can be a lame question, but everybody uses these things differently. What's some of the best time savers out there for this IDE.
Tom
43
votes
21answers
6k views
Is Java pass by reference?
I always thought Java was pass by reference, however I've seen a couple of blog posts (e.g. this blog) that claim it's not. I don't think I understand the distinction they're makin …
42
votes
14answers
2k views
Useful Eclipse Java Code Templates
You can create various Java code templates in Eclipse via the
Window->Preferences->Java -> Editor -> Templates
e.g.
sysout is expanded to:
System.out.println(${wo …
40
votes
30answers
3k views
Java: Out with the Old, In with the New …
Java is nearing version 7. It occurs to me that there there must be plenty of textbooks and training manuals kicking around that teach methods based on older versions of Java; wher …
39
votes
9answers
4k views
What’s the nearest substitute for a function pointer in Java?
I have a method that's about 10 lines of code. I want to create more methods that do the exact same thing except for a calculation that's going to change one line of code. This i …
39
votes
12answers
5k views
In Java, does return trump finally?
If I have a try/catch block with returns inside it, will the finally block be called?
For example:
try {
something();
return success;
}
catch (Exception e) { …
35
votes
36answers
4k views
Why do people use Java?
I've become very curious lately, what is it about Java that made it so popular? I've avoided learning it in detail because it seems like a very poor language at a very basic level …
