PDA

Click to See Complete Forum and Search --> : arrays


john005
Jul 9th, 2002, 01:49 PM
Has anyone written their own custom array class for use in JSP? May be for multidimensional arrays.

CaptainPinko
Jul 10th, 2002, 08:05 PM
you could if you wrote a wrapper for a vector and perform an isinstaceof ClassName check on every element added to the list for object arrays, or you could used a string and have primitive values stored in it and delineated by some abritray character

what are you asking?

john005
Jul 10th, 2002, 08:16 PM
I'm looking for something that has more features than the one available as a class in jdk. Features like giving an index and get the value or have an add feature which inserts elements at the end? Maybe remove. Or be able to have them multi-dimensional.

CaptainPinko
Jul 10th, 2002, 08:19 PM
oh are you talking about Array as in "float [] [] []" or some Array class (which i've never used nor seen, but have heard of i think...)?

john005
Jul 11th, 2002, 08:10 AM
You know where I can find a good class?

c26354
Jul 15th, 2002, 09:52 PM
if u need help with arrays check out www.java.sun.com and look up the arrays. It will tell you all the crazy thing imaginable with an array