Possible Duplicates:
What features would you like to see in Java?
What are you looking forward to in Java 7?
Iwas just wondering if anyone had any opinions on this. Perhaps its a feature of java 7 that you a particularly excited about?
|
1
|
Iwas just wondering if anyone had any opinions on this. Perhaps its a feature of java 7 that you a particularly excited about?
|
||||||||||||
|
closed as exact duplicate by Daniel Lew, mmyers, McDowell, Bill the Lizard♦ Jun 4 at 18:13 |
|
|
No more checked exceptions. An easy way in swing to catch unhandled exceptions (or do like .Net does, present an ugly box to the user saying "Something unexpected happen"), but don't make me put a try ... catch in every event method so the user knows that something bad happened. Properties - exactly like .Net has or similar - or anything ELSE than having two different methods that have no relation to each other except by naming conventions - would make javadoc commenting easier. Partial classes for cases where classes have to be very long (like some swing dialogs). Something similar to #region (.Net) for the same reason above - for classes that tend to be big and messy (UI classes), it would make life easier to organize the code as you think is adequate. Anonymous methods and delegations (an alternative to the listener approach). Reference parameters (will help in some cases - Java is a side-effect prone language anyway). Never had too many problems with generics in the way they are - it's WAY better than NOT having generics at all. Unsigned numbers? |
||
|
|
|
|
A mechanism that calls a function when a object leaves the scope it was created in. I used to code in C++ and the thing I really enjoyed was being able to use destructors to do stuff automatically. At the beginning of a block where I needed a shared resource I could declare a mutex locking object and know that when it left scope, via exception throw or via normal pathways, the destructor would be called.
Java replaces this with the finally mechanism, but I don't really like it as much as it means you have to spread the 'clean up' code around everywhere you've used it, as opposed to in the class that acquired the resource and additionally, it requires you declare a try block, even if you don't want to handle any exceptions. Its an idiom I miss. |
||||||||||||
|
|
|
Proper generics with reification (and support for primitive types) and function pointers. |
||
|
|
|
|
Removal of Generics and checked exceptions. Seriously though, it's a simple, usable tight language as is. I wouldn't mind seeing a simplified inner class mechanism (clousres) but I don't feel they are necessary. What I'd like to do is remove complexity wherever possible. A language like Scala is awesome, I just think it's a different solution space. Why have two Scalas when you can have a Scala and a Java? I fully realize that sometimes it forces you to write some pretty tough code to do tricky stuff, but I think that there should be at least one language that chooses simplicity. Edit: Why don't I like Generics? I don't actually mind them. I just don't see how they provide an advantage proportional to the cost of the complexity. There is a cost to every single feature in the language--even if you don't use them, you really should understand them. You will eventually have to figure them out, or figure out the code of someone who has used them. Generics as implemented in Java are easy to use, but a bit tough to implement a generic class properly. This breaks one of my favorite things about Java--it is reflexively as easy to create a class as to use one. In C++, this is not true. Class creation feels very heavyweight. It completely changes the quality of the code you generate. On top of that, I code without them (I'm almost always working on a pre-5 java) and nearly never need to cast. The rare case where I need to cast is pulling a class from a collection, and in that case it's a very common pattern in a for loop, you cast it right away and get on with your life. I've also come to the conclusion (took me a few years of playing with different alternatives) that it is never worth while to pass a collection outside the (small) class that owns it. You can't control what goes into the collection or what is deleted, you can't control synchronization, and you can't add methods. You might note that you will (almost?) never see collections passed around to other areas of the SDK. This used to confuse me, but at this point I can't imagine passing a collection around any half-decently designed API, with or without generics. So I accept that there MAY be a case out there that can really benefit from generics, but I've never seen one that wouldn't be much more improved from stronger OO design, and in the meantime, you're adding a LOT of syntax overhead that is now one of the most complex parts of java to comprehend. If it was as simple to use and understand as the rest of the language, or offered enough benefit to make them worth while, I'd be all over them. |
||||||||||
|
|
|
Scala features. As many as possible. |
||||||||
|
|
|
Multiline string literals. |
||
|