1 thought on “Most Common Myths Surrounding Java Programming

  1. Someone needs to update their knowledge of Java…

    => It is often said that swing is slow which is totally incorrect.
    No one uses Java on the desktop, Java code nowadays is either Android or Server Side.

    => Another memory-related complaint about Java is that the garbage collector in Java is executing at poorly timed intervals which causes the application to halt for seconds till the collector sweeps and cleans.
    You seem to be completly wrong here, the memory problem of Java is not the slowness caused by GC, is the way Java programs seem to eat all available memory.

    => Java has evolved to be an effective programming language that doesn’t have performance issues.
    This is complete bullshit, including the fact that JDBC is completely synchronous, when it should have been asynchronous.

    => But Java is steadily being improving over this past years 1.6 is faster than 1.5 similarly 1.5 is much faster than 1.4.
    Java 1.6? What is this? 2006? Java 6 reached end of life in 2013.

    => If an applet tries to access local files it will throw a security Exception. If uncaught, the applet will get crash but no file access occurs.
    This is bullshit, Java applets have so many vulnerabilities that only idiots have it enabled, nowadays there’s this thing called HTML5 that is great…

Leave a Reply

Your email address will not be published. Required fields are marked *