Results 1 to 3 of 3
Thread: a collection of Vehicles
- 04-13-2012, 09:53 AM #1
Member
- Join Date
- Apr 2012
- Posts
- 15
- Rep Power
- 0
a collection of Vehicles
Hallo i have a three classes , Abstract class Vehicle , concrete subclass of Vehicle Car and the Depot class(Vehicles Database) - i have an Gui with the name DepotAdmin with a private method SetupDepot which is where a depot is setup and at least 10 Vehicles are added to the depot .
my question is what is the best way to store those Vehicles in the Depot class , at the moment i am using arrayList , if i create car from car class and put it the Depot would be ok , or it will be better to use arrays ?
Thanks
- 04-13-2012, 10:01 AM #2
Re: a collection of Vehicles
which collections will "be better" depends on your needs. do you need no duplicates, fast iteration, fast deleting, sorting etc. in general an arraylist is ok, but tell if you have some special requirements.
- 04-13-2012, 10:17 AM #3
Member
- Join Date
- Apr 2012
- Posts
- 15
- Rep Power
- 0
Re: a collection of Vehicles
ok i will write some more info so you understand better . i have some more classes the concrete subclass of car which is rentableCar and rentablecar implements the interface rentable and a Date class .Cos of the Vehicle being abstract all of the fields are transferred to car and all the fields are transfered again to rentablecar All of the dates are created from the date class
The depot class has two fields Depot Name and A collection of Vehicles where at the moment i have this private arrayList <Vehicle> vehicleList . The methods of depot are Add vehicle , find vehicle by make , remove vehicle , rent vehicle and return vehicle --
The only place the date of the return is recorded is in the rentablecar class so i need to connect the depot with the rentablecar class to get the rent Vehicle method working , can i create a method that adds 10 vehicles inside the depot class like a tester ?Last edited by infernocy; 04-13-2012 at 11:24 AM. Reason: change some words
Similar Threads
-
Collection
By ShitalJain in forum New To JavaReplies: 1Last Post: 06-25-2011, 10:56 AM -
Collection Help
By spartan in forum New To JavaReplies: 2Last Post: 03-18-2011, 09:18 AM -
Help me on Collection
By kathir0301 in forum New To JavaReplies: 1Last Post: 12-03-2010, 11:08 AM -
collection
By D.Calladine in forum New To JavaReplies: 1Last Post: 12-02-2010, 02:36 PM -
help for collection api
By javastuden in forum New To JavaReplies: 3Last Post: 02-24-2010, 11:52 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks