Anonymous
Unregistered
|
|
There doesn't seem to be any compelling reasons as to why Java needs to adopt itself towards to the lazy 'C' or 'C++' programmers.... the new 'enum' paves the way. Don't we have a classic style of doing away with 'enum' in Java? Why the forgotten 'printf' is back into Java? Why the support for variable argument lists?
Moreover, the 'improved' 'for' makes the code non-readable... man, where is Java going?!
OK, one good thing is the 'annotations'. Cool one.
|
Unregistered
|
|
Iam very sad to see the printf syntax in java. Is there a transition taking place from java to C++ ? "For" loop syntax is non readable. Everything was fine with JDK 1.4 . But i think jdk 1.5 is messing up java with C, C++ style. Its not a happy news to java brains. Java should be unique.
|
Unregistered
|
|
Java's always been about building off C++ - nothing new there. If you're only complaining now you haven't been paying attention.
Formatted strings should have been there from the start - tell me, what alterantive would you use?
The new style for loops are far better - they explictly say that you want to do an iteration, it's not just some convenient way of expressing an equivalent while loop.
|