Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Java vs C++ on performance on Symbian

Status
Not open for further replies.

threedim

Technical User
Mar 18, 2002
22
MY
I was wondering if there is a significant performance difference between writing an application in Java and C++ on Symbian OS.
eg. memory handling and speed which are all important in things like pda's n phones.

Are there any advantages performance wise between those two?
 
C++ will always be faster than Java (unless compiled down to a binary executable). Even in that case C++ programs will execute faster.
 
oh ic. so performance would definately be better on C++ then. Java just has an easier to understand syntax :p
 
Yes, the fact that Java complies down to byte code which is then executed by the Java Virtual Machine makes it execute a god bit slower that C/C++. Java is easier to learn than C/C++ because Java does not use pointers, just references. Also the vast APIs and Swing allow rapid development.
 
IC, but executing Java on Linux/Unix is faster then on MS OS. Why? Thanx :)
 
probably the JVMs are better optimised for Linux (as its open source) rather than MS (closed).
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top