Thread: Where's java

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Registered User
    Join Date
    Apr 2003
    Posts
    2,663
    Hi,

    I believe Java dominates the server side programming market for large websites on the internet. Server side programming is the stuff that responds to your browser when it requests a web page. php is also a common server side programming language that is geared more to hobbyists, although I think for medium to small sized websites it is extremely fast. php has an easy syntax that can be learned quickly, while Java is a completely object orientated language--just like C++.

    C# was invented by MS to diplace Java. I looked through a beginning C# book one time, and the basics look very similar to Java, e.g. there are no pointers, and all objects are created dynamically like this:

    MyClass obj = new MyClass(p1, p2);

    And, automatic garbage collection takes care of destroying all the objects for you.

    I don't think Java succeeded as the language of choice for desktop applications. It's criticized for being too slow. I think it does provide for more rapid development than a C++ application, so it may be an option. FillYourBrain can most likely provide more insights in that regard.
    Last edited by 7stud; 05-24-2005 at 01:36 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. C#, Java, C++
    By incognito in forum A Brief History of Cprogramming.com
    Replies: 10
    Last Post: 10-05-2004, 02:06 PM
  2. First Java Class at college
    By GanglyLamb in forum A Brief History of Cprogramming.com
    Replies: 24
    Last Post: 09-29-2004, 10:38 PM
  3. The Java language is being expanded
    By DavidP in forum A Brief History of Cprogramming.com
    Replies: 26
    Last Post: 06-11-2004, 09:07 PM
  4. Java woes
    By DavidP in forum A Brief History of Cprogramming.com
    Replies: 15
    Last Post: 07-06-2003, 12:37 AM
  5. C or Java as a first language
    By CorJava in forum A Brief History of Cprogramming.com
    Replies: 34
    Last Post: 10-23-2002, 05:12 PM