Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Check My New Cool Video Game

Name: Anonymous 2012-03-10 2:06

http://www.youtube.com/watch?v=8dLnM_3P8xw

Its C++ homebrew runs best under Ubantu Linux. Enjoy!

Name: Anonymous 2012-03-11 17:45

>>8
Java can easily match, if not overpower C++
Java can't match C/C++. Java has no pointers and have to recompile code on startup: it runs inside virtual machine and every array access goes through bounds check.

In Java, for (I=0; I<N; I++) g(A[f(I)]) would expand into

for (I=0; I<N; I++) {
  int J = f(I);
  if (J >= length(A)) exception(Array index out of bounds");
  g(A[J]);
}

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List