Development HANDS UP! WHO HATES JAVA?!

Discussion in 'Software' started by Mighty Yoshimi, 10 Nov 2006.

  1. Kevin_G

    Kevin_G What's a Dremel?

    Joined:
    9 Nov 2006
    Posts:
    19
    Likes Received:
    0
    Java as a language is great. It eliminates a lot of low level work for the programmer and provides a solid API for many functions. It is rather anal about forcing proper methodology for type conversions and variable initialization, unlike say PHP which doesn't seem to care. The downside to not having direct access to memory management or API's setting directly on top of hardware is speed. With the need to write clean multi-platform code that works, Java's sacrifice of software speed (especially with regards to modern hardware) was worth it.

    However, Java's virtual machines often do suck. Some are buggy and degrade Java software performance more than it should. VM's that take Java byte code and recompile it for native execution on the hardware platform are rare and don't do a good job of optimization (they're built to have fast re-compile times).
     
  2. DougEdey

    DougEdey I pwn all your storage

    Joined:
    5 Jul 2005
    Location:
    Southampton
    Posts:
    13,933
    Likes Received:
    33
    PHP does have pseudo types. Its weird coming from C++ to PHP and being used to do lots of funky arithmetic which PHP just says "Who are you? Go away, I want to sleep".

    PHPs lack of debugging is also bloody annoying.
     

Share This Page