Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / General / January 2006

Tip: Looking for answers? Try searching our database.

Map for Vectors

Thread view: 
Marcelo - 30 Jan 2006 10:24 GMT
Just a little question from a begginner,

I would like to know if there is something like a "table" or a matrix of Vectors.

I am actually looking for something similar of a "Vector of Vectors", does Java
has a class that implements this?

thanks a lot,

Marcelo
Ingo R. Homann - 30 Jan 2006 12:30 GMT
Hi Marcelo,

> Just a little question from a begginner,
>
[quoted text clipped - 3 lines]
> I am actually looking for something similar of a "Vector of Vectors",
> does Java has a class that implements this?

Yes, nearly exactly that:

List<List<MyContentType>> matrix=new ArrayList<List<MyContentType>>();

You may encapsulate this in your own class.

Ciao,
Ingo
Roedy Green - 30 Jan 2006 12:47 GMT
>I am actually looking for something similar of a "Vector of Vectors", does Java
>has a class that implements this?

You implement it literally with e Vector of Vectors, or more commonly
ArrayList of ArrayLists.

the generics to define the types get rather unwieldy.
e.g.

ArrayList<ArrayList<Dog>> matrix = new ArrayList< ArrayList<Dog>>(
500);
Now you must go and create the inner arraylists and within that the
Dog objects.
Signature

Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.



Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.