Search Results

5
votes

What is the strangest programming language you have used?

PostScript. And ever since I've denied knowing anything about it. :P Horrible. …
27
votes

Hidden Features of Java

My favorite: dump all thread stack traces to standard out. windows: CTRL-Break in your java cmd/console window unix: kill -3 PID …
1
vote

What is Your Favourite Area of the Java API?

java.util.regex There are other packages I can't live without, but the regex package has to be in the top tier of "greatest additions to java" -- definitely right up there with Collections. …
1
vote

If-statement - Check String against variable or variable against String?

I tend to check for null: if(randomtext != null && randomtext.equals("stack overflow")) { //do something } …