vote up -7 vote down star

Compared to C++, Java desktop applications are slow.

What are the reasons for that? Is there any chance of improvement in this?

flag

78% accept rate
15  
y teh java iz slowz? – Yuval A Aug 18 at 12:52
2  
You really couldn't discover the answer for yourself? – Sosh Aug 18 at 12:54
1  
Netbeans can be a good example for saying java is slow..It sucks memory.. – cdb Aug 18 at 12:56
3  
Java apps != Java. Netbeans being slow proves nothing. iTunes is slow, but that doesn't entitle me to say C++ is slow. – Macha Aug 18 at 12:57
2  
@Mnementh: I think there's something in what you're saying, but few of the C++ desktop apps that I use existed before 1996 (Java) or even 1998 (Swing). So I disbelieve that they were written in C++ just because Java wasn't available. – Steve 'onebyone' Jessop Aug 18 at 14:10
show 3 more comments

closed as not a real question by Yuval A, Aamir, ninesided, sleske, divo Aug 18 at 13:08

3 Answers

vote up 3 vote down

A poorly written java desktop application will be slow, and since many people don't tend to write these types of applications, they end up being poorly written.

You can get a responsive java application, but if Swing is too slow for you, then just use the AWT, which is a faster layer, in my experience.

In C#, if I run everything on the event thread the application can be sluggish, and you can find the same thing in Java.

This is a solution from Sun, in JDK 6. http://java.sun.com/developer/technicalArticles/javase/swingworker/

The startup will be slower in Java than C++ as there are many large dlls that have to be loaded first, as well as starting up the JRE. That is just life.

link|flag
vote up 2 vote down

Java applications are slower, but it's not anything you'd encounter at a problematic level unless you are writing the likes of Photoshop.

IMO, a bigger Swing problem worth worrying about, is the disparity between the Swing widgets and the native widgets on some systems.

link|flag
vote up 5 vote down

Why do you think Java-applications are slow? Any examples or benchmarks? Here is a benchmark to prove the opposite.

link|flag
Hehe, someone doesn't like that I attack the common myth that Java is slow and gives me a downvote. But that doesn't help: the myth stays to be a myth. :-) – Mnementh Aug 18 at 16:02
1  
Wasn't me who downvoted, but those benchmarks don't measure the performance of apps, they measure the performance of simple data-crunching algorithms. They're completely irrelevant to whether desktop apps written in Java typically feel more sluggish than desktop apps written in C++. I agree with your first point, though, that it would be interesting to see some data on that, so forgave you that those benchmarks "prove" nothing about the speed of Java GUI apps. – Steve 'onebyone' Jessop Aug 18 at 19:56
-1 for not considering GUI Apps – cdb Aug 19 at 7:08
@Biju: I'm not considering GUI-apps? So you have a benchmark, that show that Java-GUI-apps are generally slow? – Mnementh Aug 19 at 10:43
not benchmark.but my own experience in GUI desktop application(Html editor).It is slow compared to vb apps that i created.. – cdb Aug 20 at 6:08

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