Compared to C++, Java desktop applications are slow.
What are the reasons for that? Is there any chance of improvement in this?
|
|
Compared to C++, Java desktop applications are slow. What are the reasons for that? Is there any chance of improvement in this?
|
||||||||||||||||||||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
Why do you think Java-applications are slow? Any examples or benchmarks? Here is a benchmark to prove the opposite. |
||||||||||||
|