CVGalleryGamesPreviewRandomJavaSiteWeb
Site updates
Testing New System now...

[] can only be applied to arrays. It can't be applied to <type>

You have written something like this:

int foo=0;
int bar=0;

bar = foo[10];

It should be one of these two alternatives:

int[] foo= new int[15];
int bar=0;

bar = foo[10];

or

int foo=0;
int bar=0;

bar = foo;
NOTE: The Java section is mostly in maintenence mode. I don't have time to work on it right now. Errors will be corrected if pointed out, but they are not actively being searched for. Newer site features, like alternate stylesheets, may cause problems with these pages.