vote up 35 vote down star
22

I've become very curious lately, what is it about Java that made it so popular? I've avoided learning it in detail because it seems like a very poor language at a very basic level. A good language should make simple operations simple (not too much boilerplate to do something simple and common like loop over a collection, create a helper function, or read in a file, plenty of syntactic sugar) and provide lots of powerful abstractions for when complexity has to go somewhere (think real macros, templates, dynamic typing, good support for multiple paradigms). Obviously, there are some tradeoffs between these two, since they basically boil down to doing a few things well vs. handling the general but more complex case gracefully, but it seems Java does neither. Simple operations aren't simple because it's so verbose, generally avoids syntactic sugar, and adopts OOP as a one-size-fits-all paradigm. It's also not very expressive when complexity has to go somewhere, again because it insists on a very one-size-fits-all approach to programming, namely class-based OOP.

I'm honestly not trying to start a flame war here. I'm just very curious what the other side of the story is. What are Java's virtues, other than inertia and the wide IDE/library/etc. support that comes with it? When you make the tradeoff of using a language that neither makes simple operations particularly simple, nor gives many powerful and versatile abstractions for complexity has to go somewhere, what do you get in return?

Edit:

I appreciate the responses I've gotten here, and I actually do understand the tradeoff now. To summarize, by choosing a language without much syntactic sugar and with only a single paradigm, you achieve a very simple language. This has practical benefits in that the language has very few dark corners, meaning that the implementations are more consistent across platforms. It also means that code is portable from programmer to programmer, since almost the whole language is in the sane subset, and that, because of the verbosity and explicitness of Java, snippets of code are very easy to grok and reason about in isolation. I'm not sure this is a tradeoff that I would make very often, but I do now accept the fact that it is a legitimate tradeoff and that you do gain something by avoiding the types of features that Java avoids. Thank you.

flag
1  
You are a brave soul for asking this question! I'm glad you did, because it has prompted a lot of great answers. Maybe your credibility with over 1,000 points kept people from annihilating you with down votes. Please do come back and choose the answer that you feel best responds to your question. – DOK Oct 17 '08 at 21:12
2  
"I'm honestly not trying to start a flame war here." - sounds like "I honestly want to know how your mother benefits by mating with hobbits." – duffymo Dec 30 '08 at 15:20
show 8 more comments

36 Answers

1 2 next
vote up 30 vote down check

Syntactic sugar, macros and "powerful" abstractions are all good if there are a lot of highly skilled coders to use them. In reality most programming is done by less skilled mortals while gurus handle the really hard stuff. Java is about as simple as programming language can be, so it is possible for a company to have hordes of adequate programmers to do simple coding tasks.

Another thing about having a simple language is that there is good chance most people will use it the same way. With more complex languages, like C++, people end up using some subset of all possible features and may have difficulties understanding each other's code.

From what I know about Java, I have the impression that most of the verbosity comes from "enterprisey" frameworks. Most things in Java would be simple if there was a simple API for often needed simple things.

link|flag
5  
Amen. I think Java has acquired a really bad reputation for verbosity thanks to many people using overengineered but still overspecific frameworks. It's bad when people need to use the term "POJO" to refer to a normal, non-bean, non-proxy, non-whatever Java object! – Zarkonnen Oct 29 '08 at 9:48
show 3 more comments
vote up 0 vote down

Java had a big company backing it and was around at the right time. It was a massave advance over c++ do to things like garbage collection and the standard librarys. It gained market share and it's not practical to rewrite all the existing Java code in Ruby or Python even if it may be a better language. SInce Java has so many programmers that know it and has so much existing code it is still used to maintain old programs as well as writing new software instead of having to retrain programmers in a new language.

link|flag
vote up 0 vote down

Most people will say garbage collection & write once run anyware.

IMO it was the same deeper reason that also made COM a huge success: binary standard and compatibility. Generic C++ has always been plagued by this tiny little detail that few seem to pay serious attention.

That and the ability, because of the VM, for your code to crash without taking the whole proccess down with it. That was crucial for the success of the J2EE as the server and the various applications share the same proccess.

link|flag
vote up 1 vote down

It depends whether the question is about Java, the language, or Java, the technology. The discussion so far seems to have focussed on the language. Although the Java language has merits of which many are arguable, one of the main reasons for choosing Java as a language has little to do with any of that.

Until recently, and ignoring "off-beat" technologies, Java was the only readily available language for accessing Java technology. This has changed recently and is likely to continue to change as other languages become available.

By "Java technology", I am referring to the facilities involved in the Java Virtual Machine executing Java bytecode. This underlying technology is not dependent on the Java language in any way - you can generate Java bytecode by other means - although the Java language compiler is a good choice because it is likely (guaranteed?) to generate verifiable Java byte code.

So - why do people use Java technology?

Some advantages have been cited here: portablility, garbage collection, library coverage, speed (yup!) ... but there are two which seem to be very important and are less often cited.

These are in the areas of: security and deployment.

Security:

The standard of the security of Java is captured well in the preface of the book "Inside Java 2 Platform Security" by Li Gong, et al.: "Java technology is possibly the only general-purpose secure computing platform to become commercially successful. This would never have happened had the designers not taken security seriously from the start. The security properties of Java technology are many, and the Java platform builds on itself to create a reliable and secure platform."

Java is, arguably, the most secure generally available computing platform that we have ever had! This not only means that low level things do not go wrong, but also that higher level facilities can be built on top of it.

But you have to be in it to win it! Hint: install a SecurityManager! That is - as a crude starting point - either: run your program using "java -Dsecurity.manager" or execute at the start of your program "System.setSecurityManager(new SecurityManager());" but not both!

Actually, of course, there is more. Policies need to managed. Also the whole security model is extensible for the programmers purposes.

Deployment:

The fundamental model for network-based class loading in Java is extremely powerful. And it is becoming increasingly valuable in our increasingly connected world.

Perhaps the greatest strength of Java is that it combines excellent security and deployment capabilities in the same technology.

That is the way that I see it anyway!

link|flag
vote up 2 vote down

I would add more two advantages:

  • Open Source
  • Community suport
link|flag
vote up 0 vote down

java is so popular because everything is already available via vast libraries and we just ought to use the methods defined in classes to achieve our goal .

link|flag
vote up 0 vote down

For me, it is not just the great strict type-system (I personally hate the weakly typed languages), but the development tools. You would have to prey IntelliJ out of my dead cold hands. So far, Microsofts VisualStudio is just inferior to the refactoring power I have with the team of Java/IntelliJ. This is largely to blame to the strange text manipulations the C/C++ system enforces by the #define macros. For computers, this stuff is next to impossible to comprehend and so they cannot support me writing code fast.

Yes, Java is more verbose, but that is offset by the fact that Java is easier to debug, the libraries are clean and the language is simple without any evil taps (until JDK 1.5, that is. Auto-Boxing and the way generics are implemented are a different dark chapter).

link|flag
vote up 1 vote down

I think it mainly comes down to the history of the language - you need to understand its history to understand how it became popular. It still retains popularity as a result of that initial momentum. There are various factors.

Java became popular in the late '90s, when the majority of software was written in C/C++. Even if you're a fan of C++, you have to admit that it is, overall, a fairly complicated language because of the number of features that it incorporates. As a result, it's a difficult language to master; Java, by comparison, is much "cleaner" and easier to learn. C++ is also plagued by a number of common problems, all of which Java solves. These include: lack of bounds checking for arrays (leading to buffer overflow attacks), manual memory management (leading to memory leaks and crashes from double frees) and the fact that portable software is difficult to write (Java provides a platform which is intrinsically portable - mostly, at least).

When you take all of these into account, Java came across as a much "cleaner" language and was especially attractive to universities teaching introductory programming courses. When I was at University (2000-2004) all programming was taught using Java, for example. This has a big influence when those students go out into the real world to work.

Nowadays there are a number of common languages that have become popular, and - importantly - acceptable to managers, to use. These include Python, C#, Ruby, etc. At the time that Java came out, though, none of these were popular or well-known enough to be accepted for use in serious software.

You should also factor in the influence of the web. I remember back around 1999-2000, there was a lot of "buzz" around the use of Java applets - small Java programs that could be embedded into webpages. Nowadays, it's incredibly rare to see Java applets used. Microsoft even removed the Java VM from IE. Back then, the fact that Java was available inside all of the major web browsers was a pretty important thing.

Finally, it's worth considering the fact that Sun put out a big marketing campaign for Java, which helped to cement its reputation among both programmers and managers. Plus, the fact that it was developed by a big company like Sun helped to give it some credibility.

So, I agree with you that there are things that are annoyingly complicated to do in Java (although it has improved over time). The fact is, though, that people continue to use Java now because it's already popular, and it became popular because 10-15 years ago it was, in many ways, a lot better than many of the other options available.

link|flag
vote up 0 vote down

You answered the question: "inertia and the wide IDE/library/etc. support."

Some time ago the New Yorker magazine noted that New York city, a hotbed for finance and publishing was still thriving. They asked the question why that would be true in the digital age which made "location" much less important. Their answer was simply: "that's where the people are".

Java gained market share and inertia because the promise(real or perceived) of "Write Once Run Everywhere" coincided with the dawn of the internet. Now people use Java because that's where the people are.

Oh, and without pointer syntax it's safer than C++.

link|flag
vote up 0 vote down

I personally believe that explicitly-typed languages make it easier to develop large-scale systems in a corporate environment. If you want a completely type-safe, explicitly-typed language that is object-oriented, has built-in garbage collection, and is cross-platform, then Java is one of your only choices.

Granted, there are many software tasks that do not require type-safety, or an OO language, or garbage collection--but if you're looking for a language with all those features, Java is one of the strongest contenders in that space.

link|flag
vote up 1 vote down

Great code reflection and introspection. Makes it far easier to share libraries than uisng DLLs for example.

link|flag
show 2 more comments
vote up 3 vote down

Readability - the language is simple. There is no operator overloading, which makes (most?) use of operators intuitive. General use tends towards verbose and meaningful identifiers, which further enhances readability. C syntax made it approachable in the early days.

Writability - Garbage collector. Decent compiler error statements. Built in stack traces make for easy debugging (at least on some level - big up vs C/C++, at least in my bumbling experience with the latter). Array bounds checking, and all those other dinky little improvements from C/C++.

Documentation - the documentation system is STANDARDIZED AND BUILT IN. It's also pretty dang decent. The javadocs are easy to generate, present well, and don't explicitly require the programmer to document his/her code (not that I know of anything that does). Further, the standard library is very well documented. Couple this with the tendency of Meaningful Identifiers and other design patterns, and Big Code can become fairly accessible even with crummy documentation. Really, I'm surprised this hasn't been mentioned elsewhere. Maybe everyone takes it for granted. I sure did. Then I learned XXXXXX (censored to prevent flames - but take your pick: I really think java's documentation shines versus other languages').

Libraries - the standard libraries provide a very solid base. Discussed elsewhere.

Openness - Open source (kinda, sorta, not really, never mind..) The specs are open, the standard library sources are open, etc. The fact that the standard edition came cerveza libre for desktops probably didn't hurt. (And I know that Sun has opened up the jvm more recently)

Portability - enough said.

Scalability - Huge applications are more practical/easier to write given OOP et al. Why do you think good IDEs exist for java?

Marketing hype - this one definitely doesn't hurt an objective of massive adoption, and was probably more responsible than the technical details. And right away, its C syntax targeted an already large community. Anyways, it's been discussed elsewhere.

Really, I'm probably about as perplexed as you are about the adoption of java. It is annoyingly verbose and definitely not well suited to key areas (scripting, intense numerics, to name a few). However, holistically, these are fairly minor concerns given all the advantages enumerated here and elsewhere. I find I can approach huge units of code in java without my eyes bleeding (okay, I only tried this once in C++ and quickly gave up).

link|flag
vote up 0 vote down

Others have mentioned lack of magic, but let me expand on that. One of the virtues of Java is that it's easy to reason about what any piece of code is doing — for people and tools . Any given piece of code has only obvious external influences. Interestingly, these are some of the same things that make Java more verbose:

  • No macros that you have to track through multiple header files.
  • No operator overloading.
  • No implicit casts.
  • Single inheritance with interfaces.

I believe that this makes Java easier to learn, easier to read, and easier to write good tools. I'm not saying good tools can't be done for other languages, but the tooling in most other languages lags behind the current Java tools.

link|flag
vote up 10 vote down

The great thing about the Java platform is that you don't have to program in Java!

link|flag
vote up 1 vote down

I've avoided learning Perl in any detail because there's so much syntactic sugar it's impossible to know where to start. I'm extremely skeptical of languages that hype themselves up based on syntactic sugar.

When you write C++, you're really writing assembler. This leaks through into the basics of the language's design -- inheritance and virtual functions are a big one, let alone memory management. This is a big reason why C++ is fragmented into different toolsets (Visual Studio, GNU, Intel, AIX...) and never seems to get the traction for IDE and tool support that Java and C# have. Factor in the preprocessor and all bets are off. I write C++ at my day job and I enjoy it, but I'm well aware that I'm writing assembler code and I use assembler-level tools to debug it.

Now, Write Once Run Anywhere is just wrong for a lot of Java applications. Write a business application that does any real work and has a GUI, and you're locked into one version of the JVM. Look at all the shops still running Java 1.4.2. I still target 1.4.2 as the de facto "standard" for any Java code I write. You might be able to migrate between different environments running the same minor version of the JVM, but that's not always guaranteed either. A lot of that's down to sloppy code, but not all of it.

Tools matter. Inertia is a huge deal, the code base at any shop quickly outgrows the number of programmers assigned to maintain it. I don't love Java for its aesthetic virtues, but I use it because I know it runs on the vast majority of machines, and other people with basic OOP knowledge can maintain it. If you need Java code to do something, write an API with classes and interfaces to do it. I'd rather use an API for stream and file I/O than rely on syntactic sugar that gets exponentially more convoluted as you need more options. Most people can't write good APIs, let alone handle more complex language features.

link|flag
vote up 5 vote down

Well I think it was a language that allows enterprise applications be developed very easily.

Back in 1997 - 2000 only UNIX servers were very very reliable and at the same time flexible. We had mainframes but the programming language was hard to upgrade. And windows OS well... everybody knows what was the state of Windows 10 yrs ago in the server ( today they are very competitive )

When a solution ( perhaps C++ or Objective-C ) was created, it was first programmed on a PC and then recompiled on the server for the specific architecture ( AIX, Solaris , etc ) That process was very very risky, since the build may fail, or a lot of flags has to be configured in the build file ( make )

With Java all this change, now the binaries built on the CPU may run unchanged!! And this is true. No recompilation, no nothing. You just upload the jar ( or later the war or ear etc ) A lot of pc's may be used for the developers and a 10 CPU's server monster with up to ... ( heard this ) 8 gb or RAM ( he he ) was used to production.

Java was popularized for applets, that's correct, but never did it well. The fact that everyone created it's own JVM implementation was the main reason of the failure, thus "Write once debug everywhere" raised and applets never came very far as was initially though. But he conquered the server-side.

Of course, .NET appear years later, with the CLI and a new language C# came into play, but it was only after Sun sue MS that they came to this great idea. Nowadays .NET is a very good platform to enterprise systems, and Windows Server is as reliable as most UNIX servers, but IMHO C# & .NET is like a MS evolution to the Java environment it self.

Everything you said of java may sound strange nowadays, when languages like ruby, python, C# and other are much more flexible. But at those days, java was like a oasis for C++ developers, very dynamic, very easy to work with and with to promise ( now concreted ) of run very fast, that was the reason types as , int, char, double etc where primitives and not objects.

Years have passed and java is in very good shape. Its slowness ( mainly attributed to client side applications ) is not longer a problem ( but the bad reputation still exists). New technologies arose , and now a 10 CPU's machines with 8 gb or RAM is very very reachable for any of us ( Actually kids game consoles have this much power ) But java was already popular and I think this will be true for at least another 10 yrs. That doesn't mean .net platform won't be better in the same time.

link|flag
show 1 more comment
vote up 4 vote down
  1. Spring Framework
  2. Maven
  3. Apache Commons (and similar)
link|flag
show 1 more comment
vote up 1 vote down

Now the latest thing is that I like the idea of the Google Web Toolkit. Writing Javascript is cumbersome because of all the different web browsers. Google Web Toolkit seems like a huge advance in abstracting away these differences.

Also the android platform for mobile phones has some stuff in common with Java. It's not fair to say it is Java. But java knowledge definitely helps to program for android. Before this, many mobile phones already were running the embedded version of Java.

A lot of places make Java libraries that do stuff. So it may be worth learning Java so you can use some of these libraries. Google Web Toolkit has me particularly excited....

link|flag
vote up 51 vote down

Java Vs .NET

Price - .NET has tons of licensing associated with it while Java is under a more free license

Cross Platform - .NET has Mono but it is typically far behind Microsoft .NET and does not have the entire .NET library included in it. Also Microsoft can kill Mono at any moment. They probably will not but the risk will always be there....Java has ports in multiple platforms and encourages more ports. The java library is usually ported to various platforms almost in its entirety. Also many of the ports are out almost immediately.

Java Vs C or C++

Garbage Collection - This is a pretty big advance and saves development time big time. I don't think this needs more explanation.

Huge standard library - In C and C++ you need libraries to do almost anything useful. Load XML? Get a library. Regular Expressions? Get a library. Cross Platform GUI? get a library. Not all libraries are available on all platforms and it is not unusual to use one and suddenly have it stop being maintained and have to switch. In Java the standard library is huge. It includes data structures, GUI libraries, xml libraries, web libraries, networking libraries, regular expression libraries, etc... Now with Boost C++ gets some of these things in a cross platform way but even C++/Boost is lacking compared to Java's library....

Cross Platform - It is much easier to port Java than C and C++. I don't think this needs more explanation.

Java VS Perl/Python/Ruby

Speed - The complaint against Java used to be speed. Compared to C and C++ it was slow. Still for most business apps this really didn't matter. Now Java tends to be very close to C in speed. Still for most business apps even Perl/Python/Ruby are fine though they are sometimes 20+ times slower than C. Java is sometimes 4 times slower than C or less. Basically an order of magnitude improvement.

The Library - I know both Perl/Python have huge libraries. I'm not 100% sure about Ruby but I'm sure that one has a big one too. Perl has CPAN as well. But in terms of standard library it is hard even for these language to compete with Java. In Python/Perl TK is included as a standard GUI library. Java includes Swing, AWT (and now I think SWT too). Java includes concurrency libraries, web services libraries, xml libraries, etc. all built in. Java also includes enterprise frameworks, sound, graphics, etc.. I don't think I have found a language with a bigger standard library yet. But with Perl/Python/Ruby I think this is less of an issue with data structures and other more standardishy things. Still the java library is tough to beat. And it is all pretty efficient.

Also when comparing with .NET don't forget that .NET was founded after Java and to a large degree copied much of Java. It also had the benefits of learning from many of Java's shortcomings (I would take delegates over nested inner classes 10 out of 10 times). But compared to what else was available at the time Java was revolutionary. Compared to C and C++ it is much more productive to built an enterprise application in Java. Although with Boost and other great efforts C++ (including the newer ISO standards) C++ is slowly catching up. But C and C++ are so powerful that it is easy to shoot yourself in the foot. The garbage collector has such a huge productivity advantage in programmer time.

I think now with processors becoming more powerful the speed issue of C and C++ versus Java is becoming even less important. Also there have been many advances in Java technology (like the Just In time Compiler). Someday the speed difference between Python/Perl/Ruby may become less important too. When that day comes then maybe there won't be a reason to use Java now. But until it sometimes speed necessitates Java or .NET (or C++/Common Lisp/anything on the level) and Perl/Python/Ruby just don't cut it...

** ABOUT MONO **** It has come to my attention that I seem to have offended people saying Mono might be a legal risk. My point is not that MS is planning to shut down Mono. It is that the possibility exists. C# is an ECMA standard but not the .NET libraries. Also Mono is catching up with MS .NET, it has made good progress and Microsoft has warmed up to it as well. But the fact is that MS and Mono are in a business relationship. And that is subject to the whims of people at business. If tomorrow MS decides MONO is enemy #1, they may be able to kill it. Even if they cannot kill it, they can develop a lot of stuff for .NET and not share the technical details with MONO. Remember how long it took MONO to get winforms implemented? I'm not knocking MONO. They made great progress. But still it took a long time to get MONO up to speed. Without MS help adding their new features will take time. Also ADO.NET, ASP.NET, WinForms are not ECMA standards. There is a patent agreement not to sue Novell customers. If you aren't a Novell customer then there is no agreement. I'm not saying you will get sued. But I'm saying that it is a risk (even if a 2% risk). And to deny that is to be stupid. At the same time most windows developers are using ADO.NET to talk to databases, WinForms to create GUIs, etc.. So you really need those technologies to port most normal applications. That's what is great about Java. JDBC, AWT, Swing. There is no dark cloud.... Again I mean no disrespect to Mono. I think they have made great progress since the early days. Compared to when it could only compile a little C# and most of the .NET library was not implemented to now where it has many features of .NET 3.0 it is a HUGE effort.

Also, if you use MONO and make your GUI in GTK and stay away from the less controversial API's then you probably have 0 legal risk even if you are not a MS or Novell customer. If I developed in Mono I would probably use winforms and ado.net because that's what I use in Microsoft environments at work. But admittedly I could just GTK. And not worry.

link|flag
show 14 more comments
vote up 0 vote down

Java is much better object-oriented language than C++. Pick up a design patterns book, and think about how to apply it to your code design. It gets tricky.

C++ is missing a concept of interface in its intrinsic language construct. Of course, you could get around it using Microsoft COM. But uh-oh, it's Microsoft-platform specific. C#? I like C# better than Java, because C# has much more convenient language constructs. But uh-oh, again, it's Microsoft-platform specific (Forget about Mono), and it's hard to find quality open-source libraries.

I won't go so far as to compare Java to Python, Lisp, Perl, Haskel, etc.

link|flag
1  
Wrong: c++ has classes with pure virtual methods which function exactly like interfaces. If you inherit from a class with pure virtual methods, then it is a compiler error if you do not implement them in the subclass. no COM required at all. – Evan Teran Oct 18 '08 at 4:15
vote up 3 vote down

Java has one thing going for it that C++ and Perl also have: it's old. Alright, so it's not "old" in the same sense as Fortran or Lisp, but Java had a huge launch and was around for years before .NET arrived, just as Perl was around and had a user base built up before Python or Ruby matured. So if you're wondering why so many people originally chose to use Java instead of C#, Python, PHP, or whatever, the answer may simply be that C# and Python didn't exist at the time (or at least they didn't exist in a stable, popularized form).

link|flag
vote up 4 vote down

If you weren't around for all the Java hype in the 90's, this hilarious article may help . It was written by Billy Hollis, renowned VB guru. It's the history of C languages.

To be fair and balanced, here's his other hilarious article skewering VB and VB.Net. It's the history of BASIC languages.

link|flag
show 1 more comment
vote up 9 vote down
  1. A Huge library.
  2. Write once. Run everywhere. (it's not simple as that, but it can be made with two or three little modifications)
  3. No memory manipulation.
  4. It's simple. If you want to make simple tasks you can do it with your favorite script language.
link|flag
vote up 3 vote down

It's great as a teaching language because there's so little magic but such strong consistency. Magic scares new people away and clouds the learning process, at least when you're trying to do it in a formal class environment.

link|flag
vote up 0 vote down

When .Net first came out, it was regarded as risky by many CTOs. Java was already around, and was proven. So, one conservative approach was to go with Java. In fact, I was working for a large company that took the leap into .Net. Its cross-town rival said "no .Net, stick with Java".

Today, both companies have huge installed bases of desktop and web apps in their respective languages. It would be hugely costly to convert existing apps to another language for not much benefit. If they wanted to start coding all new apps in the other language, they would struggle with supporting legacy code in the other language. So, each continues with its chosen language. Neither has a problem hiring competent developers in their respective languages.

So, it's partly a matter of momentum. Or inertia.

Initially, the company that went with .Net said "no C#, only VB". While that may sound humorous now, they were worreid about being stuck with a bunch of code in a failed language that they couldn't hire developers for. After a year or two, they switched, so that all new development was done in C#. The legacy VB code was left alone. For a C# developer, it isn't that hard to maintain VB, if you can just stop that twitchy pinky from adding all those semi-colons at the end of every line.

link|flag
vote up 0 vote down

It provides multi-platform, memory management, and wide applicability from console applications to large-scale web applications. It was also the first to provide features such as embedded applets in the browser. Also, because of it's early success, a lot of developers know the language.

link|flag
vote up 0 vote down

I think it was a lucky combination of factors - it appeared when the web was in its infancy and became known as a web-development language. Suddenly everyone wanted to do web dev, and java was the language that either promoted it, or provided an excuse for it.

Its platform-neutrality helped, as non-MS based companies realised it could reduce their development time, when they had to support their unix platforms as well as Windows, and I guess it just grew from there.

link|flag
vote up 2 vote down

not too much boilerplate to do something simple and common like loop over a collection

for(String name : names) {
  System.out.println(name);
}

That doesn't get much shorter.

But I do see your point. Java does a lot, but it's not the best for everything.

Java has LOTS of advantages, which has been discussed MANY times before. I agree that some stuff (like reading a file) is more complicated than it needs to be, but that rarely makes any difference to me.

Only when working on a very small project is it annoying. So either make (or use) a library of convenience methods, or use something else for small projects.

link|flag
show 6 more comments
vote up 13 vote down

It was there at the right place and time. It felt like C, but with built-in memory management and OOP. That, plus the "write once, run anywhere" angle, was the perfect sales pitch at the time. And Sun made a serious sales pitch.

If Microsoft had started its .NET efforts at the same time Sun was working on Java (rather than five years after the fact) we'd all be coding in C# right now.

link|flag
1  
@Wedge: I don't buy it. There are still plenty of big companies who really don't want to run their servers on Windows - I don't think C# would have changed that. – Jon Skeet Oct 19 '08 at 7:20
show 5 more comments
vote up 1 vote down

As Josh said, no pointers or manual memory management is a big plus. But another huge factor is the rich set of standard libraries (for example, knowing that your Swing app will look and work the same in any environment is very helpful, even if you think Swing is ugly).

link|flag
1 2 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.