Saturday, August 21, 2004

IntelliJ 4.5.1 and Java 5.0

So I upgraded to IntelliJ 4.5.1 last night. As stated by other bloggers, IntelliJ has very nice support for Java 5.0. I'm going to start playing with Java 5.0's annotations tonight since the last project I worked on (C#) used attributes in a big way - attributes before the .NET equivalent of Java 5.0 annotations.

final Object[] aa = {"hello", 22};
I have to admit the autoboxing feature in Java 5.0 is nice - especially if you write Java and C# code.

for (String s : a)
It also feels natural to use the new enhanced loop - maybe again because is some ways its similar to what I write in C#

0 Comments:

Post a Comment

<< Home