vote up 175 vote down star
258

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

1 2 3 next
vote up 163 vote down

Double Brace Initialization took me by surprise a few months ago when I first discovered it, never heard of it before.

ThreadLocals are typically not so widely known as a way to store per-thread state.

Since JDK 1.5 Java has had extremely well implemented and robust concurrency tools beyond just locks, they live in java.util.concurrent and a specifically interesting example is the java.util.concurrent.atomic subpackage that contains thread-safe primitives that implement the compare-and-swap operation and can map to actual native hardware-supported versions of these operations.

link|flag
11  
Double-brace initialization... weird... I'd be wary of adopting that particular idiom too widely though, since it actually creates an anonymous subclass of the object, which could cause confusing equals/hashcode problems. java.util.concurrent is a truly great package. – MB Sep 17 '08 at 12:02
23  
Note that if you retain a reference to a collection initialized with this "double brace" idiom (or if we call it by its real name - annonymous class with initializer block), you implicitly hold a reference to the outer object which can cause nasty memory leaks. I'd recommend avoiding it altogether. – ddimitrov Oct 5 '08 at 13:05
13  
"Double-brace initialization" is a very euphemistic name for creating an anonymous inner class, glossing over what's really happening and making it sound as if inner classes were intended to be used this way. This is a pattern I'd prefer remain hidden. – erickson Oct 23 '08 at 14:27
3  
To make sure I understand, the double brace creates an anonymous inner class, then creates a static block inside it, which then lets you execute methods from a static context. Correct? – Drew Mar 10 at 23:20
6  
Almost, it is not really a static block but an "initializer block" which is different since it gets executed at a different time (see the link I put in the answer for more details) – Boris Terzic Mar 11 at 9:49
show 10 more comments
vote up 89 vote down

I was surprised by instance initializers the other day:

public class Foo {
    public Foo() { System.out.println("constructor called"); }

    static { System.out.println("static initializer called"); }

    { System.out.println("instance initializer called"); }
}

Executing the following code

new Foo();
new Foo();

will display:

static initializer called
instance initializer called
constructor called
instance initializer called
constructor called

I guess these would be useful if you had multiple constructors and needed common code?

link|flag
10  
The advantage of this over an explicit method that needs to be called is that if someone adds a constructor later they don't need to remember to call init(); that will be done automatically. This can prevent errors by future programmers. – Mr. Shiny and New Oct 10 '08 at 15:45
7  
Also, unlike an init() method, it can initialize final fields. – Darron Jan 7 '09 at 18:45
3  
People often dis certifications (e.g. stackoverflow.com/questions/281100/…) and especially question their technical merits. But if more programmers here had studied for their SCJP, this would not be considered a "hidden feature" by so many. ;-) – Jonik Apr 21 at 8:46
1  
I bet even "java in 24 hours" book has this "obvious feature". read more guys :)( – Comptrol May 6 at 19:40
show 4 more comments
vote up 85 vote down

Joint union in type parameter variance:

public class Baz<T extends Foo & Bar> {}

For example, if you wanted to take a parameter that's both Comparable and a Collection:

public static <A, B extends Collection<A> & Comparable<B>>
boolean foo(B b1, B b2, A a) {
   return (b1.compareTo(b2) == 0) || b1.contains(a) || b2.contains(a);
}

This contrived method returns true if the two given collections are equal or if either one of them contains the given element, otherwise false. The point to notice is that you can invoke methods of both Comparable and Collection on the arguments b1 and b2.

link|flag
show 5 more comments
vote up 74 vote down

How about covariant return types which have been in place since JDK 1.5? It is pretty poorly publicised, as it is an unsexy addition, but as I understand it, is absolutely necessary for generics to work.

Essentially, the compiler now allows a subclass to narrow the return type of an overridden method to be a subclass of the original method's return type. So this is allowed:

class Souper {
    Collection<String> values() {
        ...
    }
}

class ThreadSafeSortedSub extends Souper {
    @Override
    ConcurrentSkipListSet<String> values() {
        ...
    }
}

You can call the subclass's values method and obtain a sorted thread safe Set of Strings without having to down cast to the ConcurrentSkipListSet.

link|flag
7  
I use this a lot. clone() is a great example. It's supposed to return Object, which means you'd have to say e.g. (List)list.clone(). However if you declare as List clone(){...}, then the cast is unnecessary. – Jason Cohen Sep 14 '08 at 15:04
show 2 more comments
vote up 59 vote down

For most people I interview for Java developer positions labeled blocks are very surprising. Here is an example:

// code goes here

getmeout:{
    for (int i = 0; i < N; ++i) {
        for (int j = i; j < N; ++j) {
            for (int k = j; k < N; ++k) {
                //do something here
                break getmeout;
            }
        }
    }
}

Who said goto in java is just a keyword? :)

link|flag
4  
Eeew... it scares the sh*t out of me to think what a cowboy developer could do with such a weapon at hand... :-S – Manrico Corazzi Sep 19 '08 at 13:35
2  
...considered harmful. – Andreas Petersson Sep 30 '08 at 7:43
5  
Under some circumstances, within a nested loop construct, it can be useful to continue to the next iteration of an outer loop. This would be a reasonable use of this feature. – alasdairg Nov 8 '08 at 18:57
20  
What's especially unknown to many programmers (and probably just as well) is that you can actually label and break out of ANY old block. It doesn't have to be a loop-- you can just define some arbitrary block, give it a label, and use break with it. – Neil Coffey Apr 20 at 4:10
2  
It is not a goto at all, it can only return to a prior iteration (ie: you cannot jump forward). This is the same mechanism that occurs when an iteration returns false. Saying java has goto is like saying any language whose compiler produces a JUMP instruction has a goto statement. – Zombies Oct 1 at 13:38
show 14 more comments
vote up 54 vote down

Allowing methods and constructors in enums surprised me. For example:

enum Cats {
  FELIX(2), SHEEBA(3), RUFUS(7);

  private int mAge;
  Cats(int age) {
    mAge = age;
  }
  public int getAge() {
    return mAge;
   }
}

You can even have a "constant specific class body" which allows a specific enum value to override methods.

More documentation here.

link|flag
4  
Really awesome feature actually--makes enums OO and solves a lot of initialization problems in a very clean way. – Bill K Oct 6 '08 at 18:00
2  
@Georgy: see also Item 3 in Joshua Bloch's Effective Java (2nd ed); "While this approach has yet to be widely adopted, a single-element enum type is the best way to implement a singleton." – Jonik Apr 21 at 8:57
show 6 more comments
vote up 53 vote down

Transfer of control in a finally block throws away any exception. The following code does not throw RuntimeException -- it is lost.

public static void doSomething() {
    try {
      //Normally you would have code that doesn't explicitly appear 
      //to throw exceptions so it would be harder to see the problem.
      throw new RuntimeException();
    } finally {
      return;
    }
  }

From http://jamesjava.blogspot.com/2006/03/dont-return-in-finally-clause.html

link|flag
3  
It's nasty, but it's also kind of just a logical consequence of how finally works. The try/catch/finally flow control does what it's intended to do, but only within certain limits. Similarly, you have to be careful not to cause an exception inside a catch/finally block, or you'll also throw away the original exception. And if you do a System.exit() inside the try block, the finally block won't be called. If you break the normal flow, you break the normal flow... – Neil Coffey Apr 20 at 3:54
3  
This seems like more of a "gotcha" than a hidden feature, though there are ways it could be used as one, using this method wouldn't be a good idea. – davenpcj Jun 3 at 20:00
show 3 more comments
vote up 48 vote down

JDK 1.6_07+ contains an app called VisualVM (bin/jvisualvm.exe) that is a nice GUI on top of many of the tools. It seems more comprehensive than JConsole.

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

Dynamic proxies (added in 1.3) allow you to define a new type at runtime that conforms to an interface. It's come in handy a surprising number of times.

link|flag
vote up 40 vote down

The type params for generic methods can be specified explicitly like so:

Collections.<String,Integer>emptyMap()
link|flag
1  
And by god is it ugly and confusing. And irrelevant to type safety. – broady Sep 16 '08 at 12:21
show 1 more comment
vote up 31 vote down

I think another "overlooked" feature of java is the JVM itself. It is probably the best VM available. And it supports lots of interesting and useful languages (Jython, JRuby, Scala, Groovy). All those languages can easily and seamlessly cooperate.

If you design a new language (like in the scala-case) you immediately have all the existing libraries available and your language is therefore "useful" from the very beginning.

All those languages make use of the HotSpot optimizations. The VM is very well monitor and debuggable.

link|flag
3  
No. It's actually not a very good VM. It was solely designed to run JAVA. Typeless dynamic and functional languages don't work well with it. Of you want to use a VM you should use .NET/Mono. That was designed to work with EVERY language... – Hades32 Jun 22 at 17:33
6  
Java 7 will have new bytecodes to support dynamic languages. – Michael Borgwardt Aug 14 at 9:40
2  
Actually the JVM is solely designed to run Java Bytecodes. You can compile most modern languages to Java Bytecode. About the only things Java Bytecode is lacking in is dynamic language support, pointers, and tail recursion support. – mcjabberz Sep 18 at 15:43
show 2 more comments
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

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 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 26 vote down

The asList method in java.util.Arrays allows a nice combination of varargs, generic methods and autoboxing:

List<Integer> ints = Arrays.asList(1,2,3);
link|flag
2  
you want to wrap the returned list with a List constructor otherwise ints will be fixed size (since it is backed by the array) – kts Aug 4 at 13:39
vote up 25 vote down

The addition of the for-each loop construct in 1.5. I <3 it.

// For each Object, instantiated as foo, in myCollection
for(Object foo: myCollection) {
  System.out.println(foo.toString());
}

And can be used in nested instances:

for (Suit suit : suits)
  for (Rank rank : ranks)
    sortedDeck.add(new Card(suit, rank));

The for-each construct is also applicable to arrays, where it hides the index variable rather than the iterator. The following method returns the sum of the values in an int array:

// Returns the sum of the elements of a
int sum(int[] a) {
  int result = 0;
  for (int i : a)
    result += i;
  return result;
}

Link to the Sun documentation

link|flag
3  
I think using i here is super-confusing, as most people expect i to be an index and not the array element. – cdmckay Feb 23 at 7:28
3  
The only thing that drives me nuts about this is that it seems like it would be really really easy to create a keyword for accessing the loop count value, but you can't. If I want to loop over two arrays and make changes to a second based on values in the first I'm forced to use the old syntax because I have no offset into the second array. – Jherico May 19 at 21:34
3  
It's a shame it doesn't also work with Enumerations, like those used in JNDI. It's back to iterators there. – extraneon May 21 at 15:32
show 1 more comment
vote up 22 vote down

Language-level assert keyword.

link|flag
6  
The trouble with assert is that it needs to be switched on during runtime. – extraneon May 21 at 15:42
3  
But if it's disabled it's like it's not there. You can add as many asserts as you want in your code and you won't have any performance penalty if they're disabled. – Ravi Wallau Aug 9 at 5:15
vote up 21 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 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 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 18 vote down

static imports to "enhance" the language, so you can do nice literal things in type safe ways:

List<String> ls = List("a", "b", "c");

(can also do with maps, arrays, sets).

http://gleichmann.wordpress.com/2008/01/13/building-your-own-literals-in-java-lists-and-arrays/

Taking it further:

List<Map<String, String>> data = List(Map( o("name", "michael"), o("sex", "male")));
link|flag
5  
this isn't part of the language; the author in the link defines the "List" method to create a list – kdgregory Jan 1 '09 at 13:23
show 3 more comments
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 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 14 vote down

As a starter I really appreciate the JConsole monitoring software in Java 6, it has solved a couple of problems for me already and I keep on finding new uses for it.

Apparently the JConsole was there already in Java 5 but I reckon it is improved now and at least working much more stable as of now.

JConsole in Java 5: JConsole in Java 5

JConsole in Java 6: JConsole in Java 6

And while you are at it, have a good look at the other tools in the series: Java 6 troubleshooting tools

link|flag
1  
JConsole will be replaced vy VisualVM in future versions (6u10 maybe?) – Tom Sep 27 '08 at 11:10
2  
Sure, JConsole will be replaced or rather refined, already from 6u7 i think. But many still use the older versions of suns JVM and thus needs the JConsole. I have still not found anything supporting the theory that JVisualVM will support older versions of the JDKs. – pp Oct 14 '08 at 14:04
vote up 12 vote down

Not really part of the Java language, but the javap disassembler which comes with Sun's JDK is not widely known or used.

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 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 10 vote down

It's not exactly hidden, but reflection is incredibly useful and powerful. It is great to use a simple Class.forName("...").newInstance() where the class type is configurable. It's easy to write this sort of factory implementation.

link|flag
1  
I use reflection all the time to do things like <T> T[] filterItems(T[]) which you can then call with items = filterItems(items); The method definition is a bit uglier, but it really makes client code easier to read. – Marcus Downing Sep 17 '08 at 14:12
vote up 10 vote down

Not really a feature, but it makes me chuckle that goto is a reserved word that does nothing except prompting javac to poke you in the eye. Just to remind you that you are in OO-land now.

link|flag
1  
stackoverflow.com/questions/15496/… :-) – Nivas Jan 27 at 20:56
vote up 9 vote down

I really like the rewritten Threading API from Java 1.6. Callables are great. They are basically threads with a return value.

link|flag
show 6 more comments
1 2 3 next

Your Answer

Get an OpenID
or

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