PDA

Click to See Complete Forum and Search --> : Cystom class in an array?


MountainDew7
Apr 14th, 2009, 04:19 PM
I was wondering if it was possible to put a custom class in an array. So that way you could do like:

//something.java
class something {
boolean visible;
int x,y;
}

//blah.java
//...
something[4].x = 40;
something[4].y = 30;
something[4].visible = true;
//...

ComputerJy
Apr 14th, 2009, 06:18 PM
yes it's possible

pgag45
Apr 17th, 2009, 04:25 PM
Would be better practice however to work more OO. Create methods and private variables to abstract actually changing private data explicitly when working outside the class.