Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Along the line of C++ Urban Myths and Perl Myths:

What are the Java Urban Myths? That is, the ideas and conceptions about Java that are common but have no actual roots in reality.

As a Java programmer, what ideas held by your fellow Java programmers have you had to disprove so often that you've come to believe they all learned at the feet of the same drunk old story-teller?

Ideally, you would express these myths in a single sentence, and include an explanation of why they are false.

share|improve this question
39  
Oh no, is "common myths" the new "hidden features"? – Michael Myers Feb 11 '10 at 22:40
23  
Let's fast ask a C# Urban Myths, a C Urban Myths, a PHP Urban Myths, a Go Urban Myths, a ColdFusion Urban Myths, a Whatever Urban Myths to get plenty of badges. – Pascal Thivent Feb 11 '10 at 22:52
5  
Urban Myths of Urban Myths. – GManNickG Feb 11 '10 at 23:07
4  
Let's make MythsOverflow :) – Victor Hurdugaci Feb 11 '10 at 23:19
2  
I think these threads are very important because the answers with the most upvotes can really serve as a cluestick to some. – SyntaxT3rr0r Feb 13 '10 at 18:12
show 11 more comments

closed as not constructive by casperOne Apr 5 '12 at 15:03

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

23 Answers

Java is slooooow.

We all know there's some tasks at which Java can't beat C for speed (like low-level bit-twiddling where Java has to do a lot of copying and type conversion while C can use unions and pointer juggling). By now we also should all have seen the benchmarks where Java code runs as fast as (sometimes a little faster than) C.

But still, often you only have to mention Java to get knee-jerk jokes about how horribly slow it is.

share|improve this answer
4  
I ported a small internal message decoding library from C# to Java just to try to beat down that myth for some in-house locals. It decoded 4 times as many messages/second in Java. (and 7 times as many as the c# library running on Mono). :-) – nos Feb 11 '10 at 22:37
12  
Unfortunately the first Javas that people saw, the ones embedded in Netscape 4 and the equivalent IE, were dog slow. And unfortunately there is still a grain of truth in it - some JVMs on some platforms don't make use of graphic accelerations, so you can have a graphics demo that runs great on XP but dog slow on OS X, for instance. – Paul Tomblin Feb 11 '10 at 22:39
10  
To be controversial, I've rarely seen a Java program that was fast. They always seem to be slow compared to similar programs that weren't Java apps. – Paul Nathan Feb 11 '10 at 22:55
3  
"A java app is necessarily slower than the equivalent C program due to the time it takes to compile the bytecodes." Fair enough, but if the code is only going to be executed once or twice, but if that's the case who cares! After it has been executed a few time this overhead will be insignificant and not just in long running servers. – vickirk Feb 11 '10 at 22:59
3  
@Paul: If you've ever seen a stack trace from a Swing application, you'll have an idea why it's slow. Those stacks are usually at least thirty or forty levels deep. I'm not sure what they hoped to gain by having that many layers. – Michael Myers Feb 11 '10 at 23:22
show 17 more comments

Javascript is a subset of Java. This might be an old one but some people still believe it.

share|improve this answer
25  
I saw a FAQ once that had the question, "What is the relationship between Javascript and Java?", to which they gave the answer, "Their names begin with the same four letters.". – Jay Feb 11 '10 at 22:39
It is for this reason that a lot of people prefer to call it EMCAScript to avoid the people that say "Oh well I dont want to install java"... Sadly, this usually just leads to more confusion – Earlz Feb 11 '10 at 22:45
25  
Sigh, now I have to say it...Java is to Javascript as Car is to Carpet... – Maltrap Feb 12 '10 at 5:07
@Earlz - probably just a typo - but it's ECMAScript not EMCAscript ! :-). It's a shame that another name wasn't chosen in the first place for Javascript - but I never liked the term 'ECMAScript' - sounds like a medical condition; so I'm forced to keep the 'Javascript' meme alive and well: which then inadvertently keeps the 'Javascript is like Java' meme alive... – monojohnny Feb 13 '10 at 17:01
2  
Java is to JavaScript as ham is to hamster. – Jesper Dec 4 '11 at 14:27
show 2 more comments

"Java function / method arguments are passed by reference"

I have argued with some pretty intelligent people about this one. I would guess that some people reading this thread might still be inclined to disagree (though I suppose it wouldn't be a very good answer if that weren't the case).

share|improve this answer
1  
Ignoring primitives, I assume you are referring to a method parameter being an object reference and not a reference to an object reference. – vickirk Feb 11 '10 at 23:20
19  
Everything in Java is passed by value. Often those values are references to objects but the reference itself is still passed by value. I think that the fact that you're passing references tends to confuse people into thinking that you're passing by reference. – Jonathan M Davis Feb 12 '10 at 0:35

Write once, run anywhere: from embedded controllers to enterprise servers it doesn't need optimisation per implementation

share|improve this answer
1  
"ask anyone who has written as a J2ME app for a phone or portable device will tell no not true" - not really javas fault, J2ME is a pile of pants, if only OSGi matured years ago. – vickirk Feb 11 '10 at 22:54
2  
Test everywhere. – trashgod Feb 12 '10 at 2:52
3  
I don't see this as a myth, because for the common case of Java SE and Java EE apps running on Windows, Linux and MacOS, you really have WORA to an amazingly large degree. – Michael Borgwardt Feb 12 '10 at 10:05

Java is dead.

(See this 1999 reference.)

share|improve this answer
1  
i never heared such a comment , what it really means – sreejith Feb 12 '10 at 1:49
1  
@sreejith - it is opinionated rubbish that has clearly been proven wrong by history. – Stephen C Feb 14 '10 at 3:11
1  
It's not dead - it's resting! – Piskvor Aug 31 '10 at 8:53
2  
It's pining for the fjords. – Kylar Feb 8 '11 at 22:39
Every technology has someone claiming it's dead. Usually someone with an interest in a rival technology. – finnw Dec 19 '11 at 20:20
show 1 more comment

Myth: Everything is an object

(Even though those instructors try to force OOP down your throat)

share|improve this answer
This is more true in Java than C++, but still not completely true. That's why we have boxing and unboxing issues. – Joel Feb 11 '10 at 22:49
Goddangit, yes! I wasted about half a year at university wrstling wtih compiler errors till I'd understood that there simply isn't a way to put an int into a Vector... – Michael Borgwardt Feb 11 '10 at 22:50
Nope, that's Smalltalk and Eiffel. – Matthew Flynn Feb 11 '10 at 22:54
2  
I don't understand why such an OOP centric language as Java decided to not make the primitive types objects as Ruby or other strongly OO languages are.. – Earlz Feb 11 '10 at 23:03
1  
vickirk: Except they tried to retrofit this (with autoboxing) later, anyway -- if they'd simply made everything an object from day one, the language would be simpler today. – Ken Feb 13 '10 at 17:19
show 3 more comments

That Java and the Java Virtual Machine are the same thing

share|improve this answer
8  
This is partly Sun's fault. They put a lot of work early on into confusing the Java language and the Java "platform". – Laurence Gonsalves Feb 11 '10 at 22:59

You lose control over memory mismanagement if you use Java. Nope you can still write memory hogs regardless of the garbage collection.

share|improve this answer
1  
That's more of a GC myth than a Java myth though – sfussenegger Feb 11 '10 at 23:14
@sfussenegger: Java's GC is touted pretty loudly, so I'd say it's a fully valid Java comment. Also, less professional Java coders tend to assume they don't need to think about memory at all since there's GC around. – Macke Feb 12 '10 at 21:57
1  
@marcus your absolutely right. I didn't day it's not a valid comment; I just pointed out that this myth isn't specific to Java. – sfussenegger Feb 13 '10 at 1:11
1  
I'd say it's half-true: compared to some other languages with GCs, it does provide fairly little in the way of tunability or escapes (though with recent versions it seems to be getting better). The Java way has always been "don't worry about that, the runtime will try to do it for you as best it can", rather than the "runtime does what it can, and we provide 47,000 hooks to let you fill in the rest" approach some other languages take. – Ken Feb 13 '10 at 17:14

Imports can affect performance

Or, having package.* and unused imports has performance impact. No, it doesn't - this information is used only at compile-time.

share|improve this answer
4  
Excessive imports can increase compilation time, but it's irrelevant once the code has been compiled. – Jonathan M Davis Feb 19 '10 at 5:21
I think its the biggest since 90% of Java programmers was taught that. ctrl shift O in eclipse. – IAdapter Feb 25 '10 at 23:27

Myth: Object pooling is required for performance.

A few years ago Java, it seemed like everyone was espousing pooling objects to avoid the "cost" of creating and disposing frequently used objects over and over again. Aging information on The Internet being what it is, I see people who still run into this old chestnut every once in a while.

The truth: from java 1.4 on (at least), generational garbage collectors have made the cost of creating and reclaiming an object cheaper than looking it up from a stored cache, especially when the cache has to be thread safe. Future optimizations (stack allocation via escape analysis, for example) threaten to make it even cheaper.

The moral of the story: it's likely best to just create objects when needed and throw them away, unless your profiler tells you differently.

share|improve this answer
1  
"generational garbage collectors have made the cost of creating and reclaiming an object cheaper than looking it up from a stored cache" -- source? – Ryan Dec 2 '12 at 18:36

String concatenation is expensive, and you should use a StringBuffer/StringBuilder

While true in some cases (e.g., concatenation within loops), modern Java compilers will optimize String concatenation (using the + operator) to StringBuffer/StringBuilder based concatenation anyway.

share|improve this answer
4  
In fact there is no "String concatenation" in java, except StringBuilder/Buffer.append(..). All + operations on Strings are compiled into append()-calls. – whiskeysierra Feb 14 '10 at 2:32
String concatenation can be expensive. True, in some cases it can be optimized away, but not always. I've seen programs which tested it and showed StringBuilder to be significantly faster (though I don't have the code for such a test at the moment). If you care about performance, don't risk it: use StringBuilder. However, if it's not code that really needs to be fast or you're not doing much concatenation, then there isn't necessarily a big gain with StringBuilder. It can matter though. – Jonathan M Davis Feb 19 '10 at 5:20
1  
I used to write some code generator some time ago. I didn't believe this "myth", and just used + concatenation, line per line result=result+"x"+y+"z". After using a StringBuilder() this monster was 20 times faster... so: NOT A MYTH!!!!! – Daniel Feb 15 '11 at 20:22
1  
@Daniel How long ago was that? Since 1.4.2 result=result+"x"+y+"z" is always rewritten by the compiler as result = new StringBuilder(result).append("x").append("y").append("z").toString(); Therefore, it IS a myth. (as long as it isn't in a loop.) – avgvstvs Dec 16 '11 at 13:03
1  
I had not only one but about 100 lines like this, parts of them repeated in loops. I REALLY was 20 times faster, going down from 1 minute per file to 3 seconds. You are right for the absolute basic case of a single line statement. – Daniel Dec 17 '11 at 21:09

Object reference creation is expensive

I've seen people declare references outside of of loops thinking it is "more efficient," at the expense of the reference being scoped wider that it has to be.

share|improve this answer
1  
Talk about premature optimization. – fastcodejava Sep 1 '10 at 1:29

Asserts are of no use / are poor man's exceptions

share|improve this answer
2  
+1. Asserts have two advantages: They can be disabled in release mode and they're easier to write (less typing), encouraging their liberal use for simple sanity checks. – dsimcha Feb 11 '10 at 22:59
2  
Asserts are useful if you think of them as compiled comments, nothing more. – Kevin Bourrillion Feb 12 '10 at 17:37
They're also useful in complex private methods. – helpermethod Feb 13 '10 at 9:17
2  
Always use the long form of assert which contains a description of what has actually happened! – oxbow_lakes Feb 14 '10 at 13:28

That Java is a simple language. Yes, the core language is simple, but most of the complexity is just pushed into the libraries.

share|improve this answer
3  
1.0 and 1.1 were simple. But that was a looong time ago. – Jörg W Mittag Feb 11 '10 at 22:42
5  
@Jorg: It's still simple compared to C++, D, C#, etc. The point is that this is not necessarily good because the complexity ends up in library APIs when there aren't any good features geared toward library writers to make these APIs more useable. – dsimcha Feb 11 '10 at 22:44
1  
The hidden complexity is often a reason for bad performance. Because people don't know what REALLY happens when they do this or that (the + operator for String concatenation coming to my mind), they end up writing reeeally bad code. In order to write efficient code in Java, you really need a deep understanding of what's going on under the hood (which can take some time). – helpermethod Feb 13 '10 at 14:49

There are no pointers in Java

share|improve this answer
11  
There aren't! the only pointer in java is the word Pointer in NullPointerException! Sure they are used by the jvm but that works directly on memory, what else is it going to do. – vickirk Feb 11 '10 at 23:13
17  
Yes there are. All objects are pointers in Java. What Java doesn't support is pointer arithmetic... – Chinmay Kanchi Feb 11 '10 at 23:17
6  
@Chinmay, this is going to depend on your definition of teh word pointer. To most developers I know, the value of pointer is generally considered to be a memory address and that is not the case in java. True, if you want to use the wider sense and say a pointer simply points to an object you would be correct, however when people say "There are no pointers in Java" I'm pretty sure they have my definition of a pointer in mind. – vickirk Feb 11 '10 at 23:32
2  
@Michael - Your last sentence is not necessarily true ... depending on what you mean by "contains"!! For example, I've seen a Java implementation in which all Java references were offsets into an array of machine addresses. – Stephen C Feb 12 '10 at 1:20
2  
"I've seen a Java implementation in which all Java references were offsets into an array of machine addresses." Re-enforces the claim that java references are more akin to handles in the C world than pointer, they provide a handle to get hold of the object. – vickirk Feb 12 '10 at 1:36
show 7 more comments

.net and Java - oh they're the same. We can change over really easily later in development.

share|improve this answer
14  
What? Has anyone really said this? – Michael Myers Feb 11 '10 at 22:41
4  
Management: "Well they both run on a virtual doo hickey, so they are basically the same then huh? " – Earlz Feb 11 '10 at 22:42
Thanks @Earlz - usually to the PHB – Preet Sangha Feb 11 '10 at 22:43
I think this one depends on your position in the world. They both roughly solve the same problems at the same development pace at about the same business cost. If you're a CEO of a small non-tech franchise and need a internal webapp built, the deciding factor will be the contractor's bid price, not the technology they use. – Matt Garrison Feb 12 '10 at 22:04

Nobody uses applets anymore

Au contraire. In many enterprise environments, where it's guaranteed that the users have the appropriate JRE installed, applets are used for many tasks, such as digital signing, customized printing, etc.

share|improve this answer
1  
+1 JavaFX apps also run in Applets. – helpermethod Feb 14 '10 at 14:00
Applets do (did) generally suck though; Java Web Start is (was?) a lot better deployment option for Java apps. (Though I must admit I don't know how JavaFX uses applets.) – Jonik Apr 25 '10 at 8:26
@Jonik - I've been using applets for digital signing of documents - almost no alternatives. – Bozho Apr 25 '10 at 9:38

Myth: Being statically typed Java's less powerful than dynamically typed languages

[Edit] Ok, so it seems some explanation might be helpful here. On a theoretical level almost all computer languages, apart from SQL, are equally powerful (see http://en.wikipedia.org/wiki/Turing_completeness). Practically this means that for in any language X you can write a compiler or interpreter for any language Y thus making them more or less identical and thus equally powerful.

On a more pragmatic level these days it's not the language that matters most of the time, but the IDE, libraries, APIs etc that make for good programming.

share|improve this answer
1  
+1 Considering nearly all new script languages are statically typed – helpermethod Feb 11 '10 at 22:48
4  
What new scripting languages do you speak of? All the ones I know are dynamic.. – Earlz Feb 11 '10 at 22:51
2  
Oh. You mean new scripting languages for the JVM... (@Carsten: see, this isn't a myth, it's an arguing point - you can't prove it or disprove it, and didn't try) – Shog9 Feb 13 '10 at 16:44
1  
What do you claim is the truth here? I've heard performance, documentation, testing, and compiler simplicity as arguments for static typing, but I've never heard an argument that static typing is equal in expressive power: if it was, static typing would be better at everything! HLLs are higher level because you say less but the same words can mean more; having dynamic typing is more powerful for the same reason that having inheritance is: you can say less and mean more. I'd like to hear why you think this is a myth. – Ken Feb 13 '10 at 18:44
1  
@Helper Method: Scala isn't a "scripting language". – Laurence Gonsalves Feb 15 '10 at 9:31
show 3 more comments

Java is dead for the desktop

There were some questions about that on SO. No, it isn't dead - it has many frameworks, components and tools and much enterprise software is made using a desktop client.

Swing additions in JDK 7 are here to support the thesis that Java isn't dead for the desktop.

share|improve this answer
SO founders are known to propagate this myth/opinion :) blog.stackoverflow.com/2009/03/podcast-44 "Joel thinks that Java on the desktop is essentially dead. I don’t necessarily disagree [..]" – Jonik Apr 25 '10 at 7:58
Not only are there frameworks etc (we certainly don't lack those), but some great Java desktop apps exist: stackoverflow.com/questions/521110/… (Though admittedly many of the best ones are sw dev tools.) – Jonik Apr 25 '10 at 8:04

The name "Java" and the name of the Java is purely coincidental.

share|improve this answer

Java is the new C++. Again circa 1995

share|improve this answer

Myth: File systems in Java operate like Unix

Wrong!!!

  1. The file separator is not limited to /

  2. Absolute paths do not begin with a file separator

share|improve this answer

MYTH: Java doesn't support multiple inheritance.

This one is a huge Java myth: you can have multiple interface inheritance and THERE ISN'T A SINGLE THING THAT YOU COULD DO WITH CONCRETE IMPLEMENTATION INHERITANCE THAT YOU CANNOT DO TOO WITH INTERFACE INHERITANCE.

As a matter of fact some OO languages are "purely abstract" and support multiple inheritance.

As another matter of fact James Gosling himself said regretting not having gone "pure interface" with Java:

http://www.artima.com/intv/gosling13.html

And as the final matter of fact Bjarne Stroustrup said something similar regarding C++'s "pure abstract classes":

http://www.artima.com/intv/modern.html

Since then I have consistently pointed out that one of the major ways of writing classes in C++ is without any state, that is, just an interface.

So I think that "Java doesn't support multiple inheritance" is one of the biggest myth about Java. Usually spread by people that don't understand neither OO nor delegation.

Note that the article by Gosling I linked to above talks exactly about this and it mentions delegation. Because this is what it's about.

Sadly a lot of not-so-knowledgeable programmers mistake "multiple implementation inheritance" (which Java doesn't support) with "multiple inheritance", which Java fully supports.

Same programmers are very confused about mutliple inheritance and mistake "inheritance" for "code reuse", which is of course rubbish.

And of course there isn't a single OOD using multiple inheritance that could not be translated to a Java OOP.

So you may disagree with me but then you'd be disagreeing with Bjarne Stroustrup and with James Gosling too and, anyway, it would be impossible for you to come up with a single OOA/OOD example using multiple inheritance that I could not translate to Java using multiple interface inheritance.

share|improve this answer
3  
There's not a single thing you can do with ALGOL you can't do with COBOL but that doesn't mean that COBOL supports ALGOL. – Ken Feb 13 '10 at 18:39
Actually AspectJ allows to add fully implemented methods to interfaces, thus making java fully support even "multiple implementation inheritance". See books.google.de/… – whiskeysierra Feb 14 '10 at 2:35
2  
@WizardOfOdds: the fact that you're trying to back up your claim with some combination of unsubstantiated assertion, irrelevant quotes and insults is proof of nothing beyond your inability to provide a reasonable answer. If you can't prove your myth is a myth, then it doesn't really belong here... – Shog9 Feb 14 '10 at 18:20
9  
Java doesn't support multiple inheritance. You may be able to get along just fine without it (after all, multiple inheritance can be quite dangerous), but regardless of whether multiple inheritance is a good idea, Java still doesn't have it. – Jonathan M Davis Feb 19 '10 at 5:16
1  
@SyntaxT3rr0r: I need an object that inherits from HashMap and ArrayList. I need to pass that object to third party library methods which only accepts HashMap (or subclasses of) and ArrayList (or subclasses of). Please, tell me how can I achieve that in Java. Thanks in advance. – sinuhepop Jul 29 '12 at 0:38
show 6 more comments

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