About Java.

Started by
12 comments, last by Stranger 21 years, 6 months ago
You can play Doom.


Faith. n. Belief without evidence in what is told by one who speaks without knowledge, of things without parallel. -- Ambrose Bierce
--AnkhSVN - A Visual Studio .NET Addin for the Subversion version control system.[Project site] [IRC channel] [Blog]
Advertisement
>>I want to know whether Java is easier to learn and easier to build a 3D Engine than C++.I dont care about speed I just want to now if it is easier<<

depends on the person, personally i find them about of equal complexity (though if u get into advanced c++ stuff then c++ is more difficult)

>>and if you can make the same things with Java as with C++.<<

yes u can do the same things with java as u can do with c++

>>Comparing the code,can we support that a program made with Java needs less lines of code than with C++?<<

http://www.bagley.org/~doug/shootout/craps.shtml?xcpu=0&xmem=0&xloc=1&ackermann=1&ary3=3&wc=3&echo=5&except=1&fibo=2&hash=1&hash2=4&heapsort=4&hello=1&lists=3&matrix=3&methcall=5&nestedloop=4&objinst=5&prodcons=1&random=3&regexmatch=4&reversefile=4&sieve=4&spellcheck=4&moments=2&strcat=2&sumcol=3&wordfreq=5

http://uk.geocities.com/sloppyturds/kea/kea.html
http://uk.geocities.com/sloppyturds/gotterdammerung.html
quote:Original post by Stranger
I want to know whether Java is easier to learn and easier to build a 3D Engine than C++.I dont care about speed I just want to now if it is easier and if you can make the same things with Java as with C++.Comparing the code,can we support that a program made with Java needs less lines of code than with C++?


I''ve found the Java code to be some what bloated, just look at the way your forced to declare arrays.

Patrick
err you mean like :

int[] fiveInts = new int[5]; ?

or this :

int[] fiveInts = { 5 , 10 , 15 , 20 , 25 }; ?

What does non-bloated array code look like?

This topic is closed to new replies.

Advertisement