I found a website comparing Java with C#][1] in very details. Does anybody know any website comparing c++ with Java or c++ with C# in the similar way?
A:
the website I mensioned above is http://www.javacamp.org/javavscsharp/
Southsouth
2009-09-11 01:10:47
edit this into the question and delete this answer. :D
CrazyJugglerDrummer
2009-09-11 01:11:27
I took care of the first part for him.
Joel Coehoorn
2009-09-11 01:19:07
how to delete this?
Southsouth
2009-09-11 01:22:32
+1
A:
http://en.wikipedia.org/wiki/Comparison%5Fof%5FJava%5Fand%5FC++
I think that this is a pretty good comparison.
James Matta
2009-09-11 01:12:34
+2
A:
There are two big features/advantages that Java/C# have over C++:
Built-in garbage collection/managed memory.
You don't have to worry about cleaning up your objects. Garbage collection is coming/available for C++ as well, but it's considerably less convenient to use. Java/C# make it like the air you breath. It hard to understate how much this can help your productivity and how much enjoyment this can add to your coding.The Well-organized built-in API/library.
C++ probably has a much larger library available to it, if for no other reason than it's been around much longer and you can run it on my platforms, Java and C# are set apart by the amount of time, depth, and organization that went into the library that actually ships with the language.
On the other hand, Java/C# depend on an external runtime. The lack of this dependency means that C/C++ are everywhere. You can use C++ to program for almost any random esoteric platform out there, no matter what the constraints.
Joel Coehoorn
2009-09-11 01:14:44