After reading Hidden Features of C# I wondered, What are some of the hidden features of Java?
|
258
|
|||||
|
|
|
Self-bound generics:
|
|||
|
|
You can use enums to implement an interface.
|
|||
|
|
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 |
|||
|
|
|
|
It took them long enough to add support for this, |
|||
|
|
|
|
Not really a feature, but an amusing trick I discovered recently in some Web page:
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! |
||||||||
|
|
|
List.subList returns a view on the original list A documented but little known feature of lists. This allows you to work with parts of a list with changes mirrored in the original list. List subList(int fromIndex, int toIndex)
|
|||
|
|
|
|
You can define an anonymous subclass and directly call a method on it even if it implements no interfaces.
|
|||
|
|
|
|
with static imports you can do cool stuff like:
|
||||
|
|
|
You can declare a class in a method:
|
||||
|
|
|
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. |
||||
|
|
|
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.
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/ |
|||
|
|
i personally discovered |
|||
|
|
Joshua Bloch's new Effective Java is a good resource. |
|||
|
|
Some control-flow tricks,
The rules for definite assignment will check that a final variable is always assigned through a simple control-flow analysis:
|
|||
|
|
|
|
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. |
|||
|
|
|
|
The value of:
is (From Java Puzzlers) |
||||
|
|
|
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. |
|||
|
|
Annotation Processing API from Java 6 looks very perspective for code generation and static code verification. |
|||
|
|
|
|
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):
|
|||
|
|
You can build a string sprintf-style using String.format().
You can of course also use special specifiers to modify the output. More here: http://java.sun.com/j2se/1.5.0/docs/api/java/util/Formatter.html#syntax |
|||
|
|
|
|
Part feature, part bother: Java's String handling to make it 'appear' a native Type (use of operators on them, +, +=) Being able to write:
is very convenient, but is simply syntactic sugar for (ie gets compiled to):
ergo an Object instantiation and 2 method invocations for a simple concatenation. Imagine Building a long String inside a loop in this manner!? AND all of StringBuffer's methods are declared synchronized. Thankfully in (I think) Java 5 they introduced StringBuilder which is identical to StringBuffer without the syncronization. A loop such as:
can (should) be rewritten in your code as:
and will run approximately 80+% faster than the original loop! (up to 180% on some benchmarks I have run) |
|||
|
|
|
|
An optimization trick that makes your code easier to maintain and less susceptible to a concurrency bug.
$ time java Slow Average: 18.018s
$ time java Fast Average: 10.509s It requires more bytecodes to reference a class-scope variable than a method-scope variable. The addition of a method call prior to the critical loop adds little overhead (and the call might be inlined by the compiler anyway). Another advantage to this technique (always using accessors) is that it eliminates a potential bug in the Slow class. If a second thread were to continually reset the value of i to 0 (by calling Tested using J2SE 1.6.0_13 on Linux 2.6.27-14. |
|||
|
|
Functors are pretty cool. They are pretty close to a function pointer, which everyone is usually quick to say is impossible in Java. |
||||
|
|
|
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! |
|||
|
|
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). |
|||
|
|
How about Properties files in your choice of encodings? Used to be, when you loaded your Properties, you provided an InputStream and the
But, as of JDK 1.6, there's a |
|||
|
|
|
|
String Parameterised Class Factory.
Load a resource (property file, xml, xslt, image etc) from deployment jar file.
|
|||
|
|
|
|
SwingWorker for easily managing user interface callbacks from background threads. |
|||
|
|
|
|
You can access final local variables and parameters in initialization blocks and methods of local classes. Consider this:
A bit like a closure, isn't it? |
|||
|
|
Read "Java Puzzlers" by Joshua Bloch and you will be both enlightened and horrified. |
|||
|
|
