Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 15 of 15

Thread: why java is so populer ?

  1. #1
    Junior Member
    Join Date
    Jun 2011
    Posts
    11
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default why java is so populer ?

    As we know php is most widely used server side scripting language.But still java is so populer can anyone tell me the reason....!!
    .
    I know java is a programming language so i can built stand alone application also using java...but only this reason makes java so populer.. or anything else ?


  2. #2
    Crazy Cat Lady KevinWorkman's Avatar
    Join Date
    Oct 2010
    Location
    Washington, DC
    Posts
    5,424
    My Mood
    Hungover
    Thanks
    144
    Thanked 636 Times in 540 Posts

    Default Re: why java is so populer ?

    I like it because it impresses the ladies.

    Seriously though, I'm not sure what kind of answer you're looking for that you can't find via a google search. I'd also recommend checking out this wikipedia article: Comparison of programming languages - Wikipedia, the free encyclopedia and clicking through the other entries to which it links. Some interesting stuff there.

    Or, check these definitive sources of information out:
    Java - Uncyclopedia, the content-free encyclopedia
    Java - Encyclopedia Dramatica
    (warning: the above two links may not be exactly safe for work)
    Useful links: How to Ask Questions the Smart Way | Use Code Tags | Java Tutorials
    Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!

  3. #3
    Member
    Join Date
    Jul 2011
    Posts
    33
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Re: why java is so populer ?

    It's FREE.
    It's powerful. -- A full service language. If you can't do it in Java, they haven't thought it up yet.
    It runs on anything.--compiles to bytecode, which is an open standard, result is it is universal.
    You can have a reasonable expectation of compatability into the future.--If you find old Java source, it likely will compile & run
    Documentation & tutorials extremely well supported by publisher
    Large base of users -- many people know it, so you can ask questions productively.
    It should continue to be popular because it is popular

    Good reasons not to use Java:
    You need to do something very low level and system specific -- may not be good for designing operating systems
    You are a beginner and the syntax spooks you. -- phrasing of commands not always as simple as could be
    You are intimidated by huge API -- stick to tutorials or trust your teacher.

  4. #4
    Crazy Cat Lady KevinWorkman's Avatar
    Join Date
    Oct 2010
    Location
    Washington, DC
    Posts
    5,424
    My Mood
    Hungover
    Thanks
    144
    Thanked 636 Times in 540 Posts

    Default Re: why java is so populer ?

    Quote Originally Posted by meathead View Post
    Good reasons not to use Java:
    You are a beginner and the syntax spooks you. -- phrasing of commands not always as simple as could be
    Just out of curiosity, what other language (or non-language?) would you recommend a beginner programmer use instead, if they were afraid of learning Java's syntax?
    Useful links: How to Ask Questions the Smart Way | Use Code Tags | Java Tutorials
    Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!

  5. #5
    Junior Member
    Join Date
    Oct 2011
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: why java is so populer ?

    if you want to learn another programming language you can start with actionscript 3 . i heard it is easier .. or if you want you can learn c++ ..

  6. #6
    Member
    Join Date
    Mar 2010
    Posts
    271
    Thanks
    21
    Thanked 7 Times in 7 Posts

    Default Re: why java is so populer ?

    Quote Originally Posted by Diana_Diana89 View Post
    if you want to learn another programming language you can start with actionscript 3 . i heard it is easier .. or if you want you can learn c++ ..
    Based on syntax AS3 and Java are 98% identical. Other than the API there is almost nothing else to learn.
    Last edited by Melawe; December 7th, 2011 at 11:28 AM.

  7. #7
    Senile Half-Wit Freaky Chris's Avatar
    Join Date
    Mar 2009
    Posts
    834
    My Mood
    Cynical
    Thanks
    7
    Thanked 105 Times in 90 Posts

    Default Re: why java is so populer ?

    Really there is no Syntactical advantage over learning one languages and another. There are two major distinct syntactical styles of programming/scripting languages in my world. One class is the likes of Java/C++/C/PHP the other Python/Visual Basic style this is just the way I see it, but it's probably a personal thing.


    Chris

  8. #8
    Crazy Cat Lady KevinWorkman's Avatar
    Join Date
    Oct 2010
    Location
    Washington, DC
    Posts
    5,424
    My Mood
    Hungover
    Thanks
    144
    Thanked 636 Times in 540 Posts

    Default Re: why java is so populer ?

    Quote Originally Posted by Freaky Chris View Post
    Really there is no Syntactical advantage over learning one languages and another. There are two major distinct syntactical styles of programming/scripting languages in my world. One class is the likes of Java/C++/C/PHP the other Python/Visual Basic style this is just the way I see it, but it's probably a personal thing.
    You left out things like lisp or prolog! They are in a class of their own.
    Useful links: How to Ask Questions the Smart Way | Use Code Tags | Java Tutorials
    Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!

  9. #9
    Senile Half-Wit Freaky Chris's Avatar
    Join Date
    Mar 2009
    Posts
    834
    My Mood
    Cynical
    Thanks
    7
    Thanked 105 Times in 90 Posts

    Default Re: why java is so populer ?

    Quote Originally Posted by KevinWorkman View Post
    You left out things like lisp or prolog! They are in a class of their own.
    If you want to go there don't forget esoteric languages

  10. #10
    Forum Squatter newbie's Avatar
    Join Date
    Nov 2010
    Location
    North Wales
    Posts
    661
    My Mood
    Stressed
    Thanks
    28
    Thanked 115 Times in 106 Posts
    Blog Entries
    1

    Default Re: why java is so populer ?

    Quote Originally Posted by Freaky Chris View Post
    If you want to go there don't forget esoteric languages
    Haha! Never realised such languages existed. Chef and LOLCODE... genius
    Please use [highlight=Java]//code goes here...[/highlight] tags when posting your code

  11. #11
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: why java is so populer ?

    Quote Originally Posted by newbie View Post
    Haha! Never realised such languages existed. Chef and LOLCODE... genius
    Don't forget whitespace
    Whitespace

  12. #12
    Senile Half-Wit Freaky Chris's Avatar
    Join Date
    Mar 2009
    Posts
    834
    My Mood
    Cynical
    Thanks
    7
    Thanked 105 Times in 90 Posts

    Default Re: why java is so populer ?

    Brainf*ck and Befunge are personal favorites of mine

  13. #13
    Forum Squatter newbie's Avatar
    Join Date
    Nov 2010
    Location
    North Wales
    Posts
    661
    My Mood
    Stressed
    Thanks
    28
    Thanked 115 Times in 106 Posts
    Blog Entries
    1

    Default Re: why java is so populer ?

    Yeah.. I heard Facebook was coded in Whitespace.
    Please use [highlight=Java]//code goes here...[/highlight] tags when posting your code

  14. #14
    Crazy Cat Lady KevinWorkman's Avatar
    Join Date
    Oct 2010
    Location
    Washington, DC
    Posts
    5,424
    My Mood
    Hungover
    Thanks
    144
    Thanked 636 Times in 540 Posts

    Default Re: why java is so populer ?

    Quote Originally Posted by Freaky Chris View Post
    If you want to go there don't forget esoteric languages
    Bahaha, I wonder if I could get my company to translate all legacy C code to whitespace or lolcode?
    Useful links: How to Ask Questions the Smart Way | Use Code Tags | Java Tutorials
    Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!

  15. #15
    Senile Half-Wit Freaky Chris's Avatar
    Join Date
    Mar 2009
    Posts
    834
    My Mood
    Cynical
    Thanks
    7
    Thanked 105 Times in 90 Posts

    Default Re: why java is so populer ?

    If you do, I will buy you a beer.