vote up 173 vote down star
252

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

89 Answers

1 2 3 next
vote up 21 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
2  
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 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
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
4  
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 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
5  
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 160 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
10  
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. – sylvarking 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 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 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 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 71 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 3 vote down

Functors are pretty cool. They are pretty close to a function pointer, which everyone is usually quick to say is impossible in Java.

Functors in Java

link|flag
2  
Not impossible, merely impossibly verbose. – Pete Kirkham Feb 4 at 16:11
vote up 57 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
3  
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
19  
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 8 vote down

I was aware that Java 6 included scripting support, but I just recently discovered jrunscript, which can interpret and run JavaScript (and, one presumes, other scripting languages such as Groovy) interactively, sort of like the Python shell or irb in Ruby

link|flag
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 83 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 3 vote down

I know this was added in release 1.5 but the new enum type is a great feature. Not having to use the old "int enum pattern" has greatly helped a bunch of my code. Check out JLS 8.9 for the sweet gravy on your potatoes!

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

final for instance variables:

Really useful for multi-threading code and it makes it a lot easier to argue about the instance state and correctness. Haven't seen it a lot in industry context and often not thought in java classes.


static {something;}:

Used to initialize static members (also I prefer a static method to do it (because it has a name). Not thought.

link|flag
show 1 more comment
vote up 86 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
8  
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 5 vote down

Joshua Bloch's new Effective Java is a good resource.

link|flag
show 1 more comment
vote up 53 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 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 9 vote down

Self-bound generics:

class SelfBounded<T extends SelfBounded<T>> {
}

http://www.artima.com/weblogs/viewpost.jsp?thread=136394

link|flag
show 1 more comment
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

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

It took them long enough to add support for this,

System Tray

link|flag
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 5 vote down

Some control-flow tricks, finally around a return statement:

int getCount() { 
  try { return 1; }
  finally { System.out.println("Bye!"); }
}

The rules for definite assignment will check that a final variable is always assigned through a simple control-flow analysis:

final int foo;
if(...)
  foo = 1;
else
  throw new Exception();
foo+1;
link|flag
vote up 5 vote down

JVisualVM from the bin directory in the JDK distribution. Monitoring and even profiling any java application, even one you didn't launch with any special parameters. Only in recent versions of the Java 6SE JDK.

link|flag
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 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
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.