vote up 9 vote down star
4

After the series of Hidden feature posts, now is the time for listing down your favorite features. This thread will be used for listing Java specific features.

This is a community wiki. Please be specific.

Update : For .Net, please post your answers here: What’s your favorite feature in .NET?

flag

25 Answers

vote up 17 vote down

Garbage collection!

link|flag
vote up 13 vote down

The number one thing that as a C# guy makes me jealous is java.util.concurrent.

link|flag
util.concurrent has been an awesome addition. I was even using the backport from Emory U's CS department, before I was allowed to use 1.5. – Spencer K Oct 27 '08 at 3:52
How was the package called again? EDU.oswego.util.concurrent or something like this... – dhiller Oct 27 '08 at 5:57
vote up 11 vote down

More of a meta-feature: The fact that we can work in an environment using Macs, Windows and Linux computers based a personal preference and deploy to other Unix (Solaris and AIX) environments while almost disregarding the platform.

link|flag
vote up 11 vote down

Collections! You youngsters probably don't remember what it was like not to have a bunch of different collection types provided. Having to constantly reinvent the wheel (and the list and the dictionary). Ugh. The memories make me shudder!

link|flag
But how easy are they to customize? I have a bad habit of including very specific functionality in my ADTs, requiring either direct access to the structures or frustratingly minor tweaks to the methods they use. java.util. Yeah. One look at the source, and I rolled my own. Over and over again. – Ellery Newcomer Oct 29 '08 at 20:50
Ellery, sooner or later you discover that you can expand the Collections to do almost anything you want. In order to do that, you need to turn "Zen" and let the "control freak" in you go. Everything will be easier. You'll see. – Rolf Dec 24 '08 at 13:05
vote up 10 vote down

Binary portability.

Everyone loves the vast multitude of free, 3rd party libraries available for Java. But what makes them particularly compelling is how easy they are to use. Almost no other free software out there is distributed in binary form. Almost all of it is in source code, save for Java.

Sure, you can get the source code for your favorite 3rd party libs and apps, but most folks go straight for the jar. Who here builds Tomcat from scratch? Unless you're a developer, there's basically no need to. (Which is a good thing, early Tomcat was a nightmare to build.) Rather, extract the zip file and fire it up -- Unix, Windows, Mac, whatever.

This portability and ease of use is a strong force in the Java world. You have a huge marketplace of users, they already "know" how to install your code with hardly a glance at the documentation. Heck, some libraries are a combination library and running application.

If we as Java coders had to build all of our software from scratch, playing "DLL Hell" that seems to permeate all of the popular platforms, we'd be doing a lot more reinvention instead of reuse, if for no other reason than to avoid the pain of getting some random library built.

link|flag
vote up 6 vote down

No #include,ifdef,undef,define. Building multifile projects is 100 times easier than in C/C++ because the order of the classes doesn't matter. I thinks this is pretty damn important for newbies to programming. No wrestling with Makefiles and weird compiler errors.

link|flag
sometimes i still wish java had a preprocessor for conditional compilation. – luke Oct 26 '08 at 18:31
C# Does, and I use it all the time :) – FlySwat Oct 28 '08 at 5:41
vote up 6 vote down

I like the strong static types in Java. It is a key component of the language and most people will look past it.

I've tried Python. I don't much care for dynamic typing.

link|flag
That's an odd position, since Java has one of the weakest type systems of all statically typed languages. – Apocalisp Oct 29 '08 at 16:45
@Apocalisp: Really? How so? I'm genuinely interested. – Joachim Sauer Dec 24 '08 at 12:18
vote up 5 vote down

From an enterprise developer of 20 years who's worked in C, C++, Basic, Assembly and Java with a diverse range of talents (mostly "un"), I may have a different view than some others.

Simplicity and the lack of surprises and the fact that it's hard for another programmer to hide subtle issues behind cool tricks.

By this I mean:

  • the fact that a class must be contained entirely in one source file, any references (includes) are clearly pointed out and easy to follow.
  • The fact that there aren't too many "Neat/fun" constructs and the language is fairly consistent.
  • The inability to change the effect of the programming language, the way it is always explicit--eliminating operator overloading and no macro type functionality.
  • Very explicit reflection--sometimes it's quite useful--but I'm really glad it's not easier.
link|flag
vote up 5 vote down

Very IDE-friendly. Most of the cool stuff Eclipse is helped by the language- no preprocessor, static typing, etc.

Runner-ups:

  1. Fantastic API. Flexible, complete and well thought of. The major problem it has, it does not accomodate the learning programmer. Some shortcuts would be helpful for the "simple stuff"; i.e. parsing XML without dealing with too many factories and the like. You can write these shortcuts yourself if you have some experience, but doing simple stuff can be too baffling for newbies. Most other problems would be solved if they actually read the Java Tutorial.
  2. GC
  3. Anonymous classes. Too verbose, but very handy.
  4. Reflection and proxies.

I'm not counting here the ecosystem. For some reason or other, there's lot of high quality Java code out there, and it's easy to find.

link|flag
Eclipse doesn't seem cool anymore once I've gotten used to IntelliJ IDEA. Too bad I'm too cheap to buy a license for personal use :( – TM Oct 28 '08 at 5:37
There are no anonymous functions (yet? and alas). Only anonymous classes with one or more functions in them. I agree with the API, on both remarks: it is too "hard" to do a simple task like reading/writing a simple text file. Flexibility has a cost. – PhiLho Dec 24 '08 at 11:25
@PhiLho: you're right, I meant anonymous classes; corrected! – alex Dec 24 '08 at 12:14
vote up 4 vote down

That it is now Open Source!

It's nice to see the various Linux distributions having a fully functional Java out of the box. Not to mention that soon we don't have to rely on Apple for Java on OS X.

link|flag
vote up 4 vote down

My favourite "feature" in Java is IntelliJ IDEA :)

link|flag
I wouldn't call it a feature of the language, but I do love IntelliJ! – TM Oct 28 '08 at 5:38
vote up 3 vote down

The Standardization (JCP & JSR).
You can choose between JVMs.
You can choose your persistence framework.
You can choose your application server.
You can choose your IDE.
You can choose your Transaction Management implementation.
You can choose your XML Parser.

You can choose everything!

link|flag
vote up 3 vote down

The number of opensource libraries available.

Also, call me sick, but I love the way java code looks.

link|flag
I'm with you. I just feel comfortable with how Java code looks. – aitor Dec 15 at 11:14
vote up 2 vote down
  1. The advanced refactoring you can do with certainty across a large codebase: rename variables, methods, classes, packages. Push/pull members/methods up or down a class hierarchy. Extract constants.

  2. Reflection allows frameworks to handle unknown code at runtime, a very powerful concept.

  3. Customizable class loading. Data == code.

link|flag
vote up 1 vote down

I thought annotations were a really neat feature in 1.5. I like how it simplifies code while improving code readability. Hibernate and Web Servies are two examples I can think of that have benefited strongly from annotations.

link|flag
vote up 1 vote down

My favourite Java feature is Scala.

link|flag
vote up 1 vote down

The for-each loop from Java 1.5. An awesome improvement in terms of readability, by hiding the index or iterator variables .

link|flag
vote up 1 vote down

the synchronized keyword. Thread safety is so much easier...

link|flag
Synchronized does not guarantee thread safety. That is a lesson that everyone who writes a multi-user app soon finds out. – WolfmanDragon Feb 11 at 19:32
true but it's easier. – Jason S Feb 11 at 20:23
vote up 0 vote down

Being able to run languages other than Java on it.

link|flag
vote up 0 vote down

Cross platform of course. Develop in PC deploy in HP-UX or AIX mosters!!! with absolutely no changes.

link|flag
vote up 0 vote down

Annotations (.NET: Attributes).

link|flag
vote up 0 vote down

Choice.

There are several IDEs (Eclipse, NetBeans, and the best of all, IntelliJ). You can use EJBs using several app servers or pass and use Spring POJO development. There are lots of persistence technologies: Hibernate, iBatis, TopLink, OpenJDO. There are literally HUNDREDS of web MVC frameworks: JSF, Struts, Wicket. There are several DI engines: Spring, Guice, PicoContainer. There are different aspect-oriented implementations: Spring aspects or AspectJ.

Some people think this is confusing and a drawback. It's certainly easier to simply point to whatever Microsoft is offering and say, "We'll use that."

But I like the choice.

link|flag
vote up 0 vote down

Pre-Java 5 lack of templates. I am sorry, but I've read every argument as to what to include them, and it still does not justify having to write monstrosities like

for(Iterator i = myCollectioon.iterator(); (MyTargetType)i.next(); ) { /// }

And so on and so on.

I wrote a large program in 2001-2002 that did a lot of set theory processing, and it was gruesome.

link|flag
vote up 0 vote down

I know it may be like giving a crazy monkey a loaded gun, but I love reflection. Every time I have to do something, my brains try to think a reflection-wise way to do it. A pity I currently work with C++ (don't hit me please!)

link|flag
vote up -5 vote down

Beans. Purely because of the name. Every time i hear it, i think of Bob & Ray. Or lame fart jokes. Name anything else, for any other language, that can inspire such thoughts. I dare you...

link|flag
Best reply evar. – Daddy Warbox Oct 26 '08 at 6:53

Your Answer

Get an OpenID
or

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