210
votes
95answers
28k views
Hidden Features of Java
After reading Hidden Features of C# I wondered, What are some of the hidden features of Java?
133
votes
118answers
11k 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:
Post only one library …
110
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 starts like this:
I …
103
votes
24answers
31k 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.sqrt() function, but …
85
votes
52answers
8k 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)…
So, after just …
75
votes
19answers
18k 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. But the code looks …
61
votes
67answers
7k 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
59
votes
22answers
6k 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.
58
votes
11answers
3k 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 infinite loop and the …
52
votes
10answers
6k 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 is a perfect …
49
votes
23answers
8k 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 making. Could someone …
48
votes
37answers
5k 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. A good language …
47
votes
15answers
3k 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:
…
46
votes
21answers
20k views
When do you use Java’s @Override annotation and why?
What are the best practices for using Java's @Override annotation and why?
It seems like it would be overkill to mark every single overridden method with the @Override annotation. Are there …
45
votes
14answers
963 views
Why java.lang.Object is not abstract?
Why is the Object class, which is base class of 'em all in Java, not abstract?
I've had this question for a really really long time and it is asked here purely out of curiosity, that's all. Nothing …
