Thread: Where's java

  1. #1
    Registered User
    Join Date
    May 2005
    Posts
    50

    Where's java

    I noticed this site didn't have a java section

    I"m thinking about taking classes for java, but im not sure, is it worth it???

    I mean, im learning C++ and C#, and i know C, but what about java


    pros/cons

    advantages etc.....

    I"m not sure, i don't want to overload my brain with useless stuff that i won't use


    thanks for answers
    jay

  2. #2
    pronounced 'fib' FillYourBrain's Avatar
    Join Date
    Aug 2002
    Posts
    2,297
    this is a "Cprogramming" board which explains why we do C/C++ here and not java. As for your other question, java is very much used today as are many other languages. My job involves C, C++, Java, Ada and whatever else comes my way on a daily basis. You would do well to learn multiple languages. If you plan on working in computers with a narrow view that only one programming language is right, you won't last long.
    "You are stupid! You are stupid! Oh, and don't forget, you are STUPID!" - Dexter

  3. #3
    Registered User
    Join Date
    May 2005
    Posts
    50
    But, like, if it's the same as C/C++ why learn it? Can you give me any more information?

  4. #4
    pronounced 'fib' FillYourBrain's Avatar
    Join Date
    Aug 2002
    Posts
    2,297
    its not the same. Not by a long shot. It shares similar syntax, but the goals of the language are far different. In fact, that in a nutshell is why you should learn multiple languages. There are various design choices that were made in developing different languages that make them well suited for specific purposes. If nothing else, it gives you a foundation for advancing yourself as technology advances.
    "You are stupid! You are stupid! Oh, and don't forget, you are STUPID!" - Dexter

  5. #5
    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.

  6. #6
    & the hat of GPL slaying Thantos's Avatar
    Join Date
    Sep 2001
    Posts
    5,681
    This has been asked and answered more times then I care to think of. Closed.

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