Difference between revisions of "Java just sucks"

From Noah.org
Jump to navigationJump to search
Line 3: Line 3:
 
== The Java rant... ==
 
== The Java rant... ==
  
Java fails in every aspect it was intended. Jboss configuration is absurd. I hate XML. Ant is completely retarded. Java is actually harder to port than Python.  
+
Java fails in every aspect it was intended. Jboss configuration is absurd.  
 +
 
 +
I hate XML. Although [http://www.tbray.org/ongoing/When/200x/2003/03/24/XMLisOK this guy doesn't] and has one of the few sensible articles defending it.
 +
 
 +
Ant is completely retarded.
 +
 
 +
Java is actually harder to port than Python.  
  
 
Java's '''Checked Exceptions''' completely miss the point of exception handling. '''Exception Handling''' as a concept isn't intended to force you to handle exceptions. Exception Handling was supposed to make exception handling easier; clear; and remove clutter from code. Checked Exceptions actually forces you to add clutter. C++ and Python do exception handling sooo much better.
 
Java's '''Checked Exceptions''' completely miss the point of exception handling. '''Exception Handling''' as a concept isn't intended to force you to handle exceptions. Exception Handling was supposed to make exception handling easier; clear; and remove clutter from code. Checked Exceptions actually forces you to add clutter. C++ and Python do exception handling sooo much better.

Revision as of 16:54, 2 September 2008


The Java rant...

Java fails in every aspect it was intended. Jboss configuration is absurd.

I hate XML. Although this guy doesn't and has one of the few sensible articles defending it.

Ant is completely retarded.

Java is actually harder to port than Python.

Java's Checked Exceptions completely miss the point of exception handling. Exception Handling as a concept isn't intended to force you to handle exceptions. Exception Handling was supposed to make exception handling easier; clear; and remove clutter from code. Checked Exceptions actually forces you to add clutter. C++ and Python do exception handling sooo much better.