vote up 175 vote down star
256

After reading Hidden Features of C# I wondered, What are some of the hidden features of Java?

flag
3  
Note that it's not always a great idea to use these hidden features; often times they are surprising and confusing to others reading your code. – Kevin Bourrillion Nov 5 at 18:10
show 1 more comment

90 Answers

vote up 0 vote down

I enjoyed

  1. javadoc's taglet and doclet that enable us to customize javadoc output.
  2. JDK tools: jstat, jstack etc.
link|flag
vote up 20 vote down

Haven't seen anyone mention instanceof being implemented in such a way that checking for null is not necessary.

Instead of:

if( null != aObject && aObject instanceof String )
{
    ...
}

just use:

if( aObject instanceof String )
{
    ...
}
link|flag
show 1 more comment
vote up 4 vote down

The strictfp keyword. (I never saw it used in a real application though :)

You can get the class for primitive types by using the following notation: int.class, float.class, etc. Very useful when doing reflection.

Final arrays can be used to "return" values from anonymous inner classes (warning, useless example below):

final boolean[] result = new boolean[1];
SwingUtilities.invokeLater(new Runnable() {
  public void run() { result[0] = true; }
});
link|flag
show 4 more comments
vote up 11 vote down

My vote goes to java.util.concurrent with its concurrent collections and flexible executors allowing among others thread pools, scheduled tasks and coordinated tasks. The DelayQueue is my personal favorite, where elements are made available after a specified delay.

java.util.Timer and TimerTask may safely be put to rest.

Also, not exactly hidden but in a different package from the other classes related to date and time. java.util.concurrent.TimeUnit is useful when converting between nanoseconds, microseconds, milliseconds and seconds.

It reads a lot better than the usual someValue * 1000 or someValue / 1000.

link|flag
vote up 2 vote down

Apparently with some debug builds there is an option which dumps the native (JIT) assembly code from HotSpot: http://weblogs.java.net/blog/kohsuke/archive/2008/03/deep_dive_into.html

Unfortunately I wasn't able to find the build via the link in that post, if anyone can find a more precise URL, I'd love to play with it.

link|flag
1  
download.java.net/jdk6/binaries and then for whatever platform you use the last link (with debug in the name). I loooooove that feature! – Adrian Apr 17 at 1:05
vote up -7 vote down

If you hook onto groovy, you will have many more surprises than these :-)

link|flag
1  
Well, that is not the question... – Tim Büthe Mar 27 at 9:42
vote up 1 vote down

Instances of the same class can access private members of other instances:

class Thing {
  private int x;

  public int addThings(Thing t2) {
    return this.x + t2.x;  // Can access t2's private value!
  }
}
link|flag
1  
It's surprising if you have exposure to an OO language other than C++. – Pete Kirkham Feb 4 at 16:12
show 5 more comments
vote up 3 vote down

SwingWorker for easily managing user interface callbacks from background threads.

link|flag
vote up 7 vote down

Javadoc - when written properly (not always the case with some developers unfortunately), it gives you a clear, coherent description of what code is supposed to do, as opposed to what it actually does. It can then be turned into a nice browsable set of HTML documentation. If you use continuous integration etc it can be generated regularly so all developers can see the latest updates.

link|flag
4  
and the beauty with which it pops up in Eclipse when you hover over a method... – Nivas Jan 27 at 21:08
vote up 30 vote down

As of Java 1.5, Java now has a much cleaner syntax for writing functions of variable arity. So, instead of just passing an array, now you can do the following

public void foo(String... bars) {
   for (String bar: bars)
      System.out.println(bar);
}

bars is automatically converted to array of the specified type. Not a huge win, but a win nonetheless.

link|flag
3  
The important thing about this is when calling the method, you can write: foo("first","second","third") – Steve Armstrong Mar 25 at 20:03
show 2 more comments
vote up 28 vote down

A couple of people have posted about instance initializers, here's a good use for it:

Map map = new HashMap() {{
    put("a key", "a value");
    put("another key", "another value");
}};

Is a quick way to initialize maps if you're just doing something quick and simple.

Or using it to create a quick swing frame prototype:

JFrame frame = new JFrame();

JPanel panel = new JPanel(); 

panel.add( new JLabel("Hey there"){{ 
    setBackground(Color.black);
    setForeground( Color.white);
}});

panel.add( new JButton("Ok"){{
    addActionListener( new ActionListener(){
        public void actionPerformed( ActionEvent ae ){
            System.out.println("Button pushed");
        }
     });
 }});


 frame.add( panel );

Of course it can be abused:

    JFrame frame = new JFrame(){{
         add( new JPanel(){{
               add( new JLabel("Hey there"){{ 
                    setBackground(Color.black);
                    setForeground( Color.white);
                }});

                add( new JButton("Ok"){{
                    addActionListener( new ActionListener(){
                        public void actionPerformed( ActionEvent ae ){
                            System.out.println("Button pushed");
                        }
                     });
                 }});
        }});
    }};
link|flag
5  
There is one side-effect of using this, though. Anonymous objects get created, which may not be fine always. – amit.dev Feb 10 at 8:14
show 5 more comments
vote up 5 vote down

The value of:

new URL("http://www.yahoo.com").equals(new URL("http://209.191.93.52"))

is true.

(From Java Puzzlers)

link|flag
14  
Only if you are connected to the Internet. If it can't resolve the address, it will return false, and therefore the URL class breaks the equals() contract. Better use the URI class in java.net. – Jorn Nov 2 '08 at 21:39
vote up 3 vote down

You can access final local variables and parameters in initialization blocks and methods of local classes. Consider this:

    final String foo = "42";
    new Thread() {
        public void run() {
             dowhatever(foo);
        }
    }.start();

A bit like a closure, isn't it?

link|flag
show 2 more comments
vote up -2 vote down

These answers almost could be a website in themselves... Hidden Java... Hmmm...

link|flag
vote up 15 vote down

Java processing does a neat trick on variable definition if you do not use a default initializer.

{
   int x;

   if(whatever)
      x=1;

   if(x == 1)
      ...
}

This will give you an error at compile time that you have a path where X isn't properly defined. This has helped me a few times, and I've taken to considering default initialization like these:

int x=0;
String s=null;

to be a bad pattern since it blocks this helpful checking.

That said, sometimes it's difficult to get around--I have had to go back and edit in the =null when it made sense as a default, but I never put it in on the first pass any more.

link|flag
1  
+1 Agreed-- for some reason some people find it "confusing" not to supply an initial value for a variable, as though they think the compiler is secretly going to pick a random number or something. But as you rightly say, it's a valuable tool to spot certain errors at compile-time. – Neil Coffey Apr 20 at 4:13
2  
Use final wherever possible for additional checks. – Wouter Lievens Jul 1 at 10:22
show 2 more comments
vote up 2 vote down

Some years ago when I had to do Java (1.4.x) I wanted an eval() method and Suns javac is (was?) written in Java so it was just to link tools.jar and use that with some glue-code around it.

link|flag
vote up 18 vote down

final initialization can be postponed.

It makes sure that even with a complex flow of logic return values are always set. It's too easy to miss a case and return null by accident. It doesn't make returning null impossible, just obvious that it's on purpose:

public Object getElementAt(int index) {
    final Object element;
    if (index == 0) {
         element = "Result 1";
    } else if (index == 1) {
         element = "Result 2";
    } else {
         element = "Result 3";
    }
    return element;
}
link|flag
6  
Yes, but more strongly: "The value of a final variable must be set once" – Allain Lalonde Feb 4 at 22:15
3  
+1 Agree, this is another valuable tool for spotting errors at compile time, and one that programmers seem shy to use for some reason. Note that because from Java 5 onwards, 'final' also has thread-safety implications, being able to set a final variable during the constructor is invaluable. – Neil Coffey Apr 20 at 4:16
show 2 more comments
vote up 4 vote down

Annotation Processing API from Java 6 looks very perspective for code generation and static code verification.

link|flag
vote up 7 vote down

You can declare a class in a method:

public Foo foo(String in) {
    class FooFormat extends Format {
        public Object parse(String s, ParsePosition pp) { // parse stuff }
    }
    return (Foo) new FooFormat().parse(in);

}
link|flag
1  
Anonymous classes are overrated. Try debugging one sometime, or supporting one in the field, and you'll see what I mean. Once you lose line numbers in a release build, they're very hard to track. – TREE Nov 10 '08 at 14:36
show 2 more comments
vote up 6 vote down

Something that really surprised me was the custom serialization mechanism.

While these methods are private!!, they are "mysteriously" called by the JVM during object serialization.

private void writeObject(ObjectOutputStream out) throws IOException;
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException;

This way you can create your own custom serialization to make it more "whatever" (safe, fast, rare, easy etc. )

This is something that really should be considering if a lot of information has to be passed through nodes. The serialization mechanism may be changed to send the half of data. There are many times when the bottlenecks are not in the platform, but in the amount of that sent trough the wire, may save you thousands of dlls in hardware.

Here is an article. http://java.sun.com/developer/technicalArticles/Programming/serialization/

link|flag
show 2 more comments
vote up 3 vote down

String Parameterised Class Factory.

Class.forName( className ).newInstance();

Load a resource (property file, xml, xslt, image etc) from deployment jar file.

this.getClass().getClassLoader().getResourceAsStream( ... ) ;
link|flag
vote up 12 vote down

If you do a lot of JavaBean development and work with property change support, you generally wind up writing a lot of setters like this:

public void setFoo(Foo aFoo){
  Foo old = this.foo;
  this.foo = aFoo;
  changeSupport.firePropertyChange("foo", old, aFoo);
}

I recently stumbled across a blog that suggested a more terse implementation of this that makes the code a lot easier to write:

public void setFoo(Foo aFoo){
  changeSupport.firePropertyChange("foo", this.foo, this.foo = aFoo);
}

It actually simplified things to the point where I was able to adjust the setter template in Eclipse so the method gets created automatically.

link|flag
1  
Is the order of execution for arguments well-defined in Java? Otherwise, this could potentially generate a mess. – Konrad Rudolph Sep 26 '08 at 13:10
4  
Yes - order or execution of arguments is extremely well defined. I'm not sure that I agree that this is more confusing than having 3 lines of junk code in every single setter in every single JavaBean - much better to keep the focus on the code you want to write instead of this type of boilerplate! – Kevin Day Sep 30 '08 at 3:52
show 4 more comments
vote up 3 vote down

How about Properties files in your choice of encodings? Used to be, when you loaded your Properties, you provided an InputStream and the load() method decoded it as ISO-8859-1. You could actually store the file in some other encoding, but you had to use a disgusting hack like this after loading to properly decode the data:

String realProp = new String(prop.getBytes("ISO-8859-1"), "UTF-8");

But, as of JDK 1.6, there's a load() method that takes a Reader instead of an InputStream, which means you can use the correct encoding from the beginning (there's also a store() method that takes a Writer). This seems like a pretty big deal to me, but it appears to have been snuck into the JDK with no fanfare at all. I only stumbled upon it a few weeks ago, and a quick Google search turned up just one passing mention of it.

link|flag
vote up 2 vote down

Since no one else has said it yet (I Think) my favorite feature is Auto boxing!

public class Example
{
    public static void main(String[] Args)
    {
         int a = 5;
         Integer b = a; // Box!
         System.out.println("A : " + a);
         System.out.println("B : " + b);
    }
}
link|flag
2  
I think the question is about hidden features, not favourite features. I'm guessing autoboxing is pretty well known to anyone who uses 1.5 or later. – Andrew Swan Sep 24 '08 at 23:08
show 1 more comment
vote up 19 vote down

This is not exactly "hidden features" and not very useful, but can be extremely interesting in some cases:
Class sun.misc.Unsafe - will allow you to implement direct memory management in Java (you can even write self-modifying Java code with this if you try a lot):

public class UnsafeUtil {

    public static Unsafe unsafe;
    private static long fieldOffset;
    private static UnsafeUtil instance = new UnsafeUtil();

    private Object obj;

    static {
    	try {
    		Field f = Unsafe.class.getDeclaredField("theUnsafe");
    		f.setAccessible(true);

    		unsafe = (Unsafe)f.get(null);
    		fieldOffset = unsafe.objectFieldOffset(UnsafeUtil.class.getDeclaredField("obj"));
    	} catch (Exception e) {
    		throw new RuntimeException(e);
    	}
    };
}
link|flag
2  
that is a sun.* API which isn't really part of the Java language per se – DW Mar 5 at 2:53
vote up 19 vote down

Using this keyword for accessing fields/methods of containing class from an inner class. In below, rather contrived example, we want to use sortAscending field of container class from the anonymous inner class. Using ContainerClass.this.sortAscending instead of this.sortAscending does the trick.

import java.util.Comparator;

public class ContainerClass {
boolean sortAscending;
public Comparator createComparator(final boolean sortAscending){
	Comparator comparator = new Comparator<Integer>() {

		public int compare(Integer o1, Integer o2) {
			if (sortAscending || ContainerClass.this.sortAscending) {
				return o1 - o2;
			} else {
				return o2 - o1;
			}
		}

	};
	return comparator;
}
}
link|flag
1  
That's only necessary if you've shadowed the name (in your case, with the method parameter name). If you'd called the argument something else, then you could directly access the sortAscending member variable of Container class without using 'this'. – sk Feb 4 at 17:12
1  
It is still useful to have a reference to the enclosing class, eg. if you need to pass it to some method or construtor. – PhiLho Feb 14 at 19:13
vote up 3 vote down

The power you can have over the garbage collector and how it manages object collection is very powerful, especially for long-running and time-sensitive applications. It starts with weak, soft, and phantom references in the java.lang.ref package. Take a look at those, especially for building caches (there is a java.util.WeakHashMap already). Now dig a little deeper into the ReferenceQueue and you'll start having even more control. Finally grab the docs on the garbage collector itself and you'll be able to control how often it runs, sizes of different collection areas, and the types of algorithms used (for Java 5 see http://java.sun.com/docs/hotspot/gc5.0/gc_tuning_5.html).

link|flag
show 1 more comment
vote up 28 vote down

My favorite: dump all thread stack traces to standard out.

windows: CTRL-Break in your java cmd/console window

unix: kill -3 PID

link|flag
3  
Also ctrl-\ in Unix. Or use jstack from the JDK. – Tom Hawtin - tackline Sep 17 '08 at 14:53
show 1 more comment
vote up 8 vote down

Not really a feature, but an amusing trick I discovered recently in some Web page:

class Example
{
  public static void main(String[] args)
  {
    System.out.println("Hello World!");
    http://Phi.Lho.free.fr

    System.exit(0);
  }
}

is a valid Java program (although it generates a warning). If you don't see why, see Gregory's answer! ;-) Well, syntax highlighting here also gives a hint!

link|flag
1  
This one is in <a href="javapuzzlers.com/">Java Puzzlers</a>. – cdmckay Feb 23 at 7:31
1  
neat, a label with a comment :) – Thorbjørn Ravn Andersen May 26 at 7:57
vote up 0 vote down

"const" is a keyword, but you can't use it.

int const = 1;   // "not a statement"
const int i = 1; // "illegal start of expression"

I guess the compiler writers thought it might be used in the future and they'd better keep it reserved.

link|flag
1  
Not exactly a "feature", but definitely "hidden". – mmyers Oct 17 '08 at 20:13
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.