Results 1 to 4 of 4
- 12-11-2011, 04:56 AM #1
Member
- Join Date
- Aug 2011
- Posts
- 8
- Rep Power
- 0
I need help using LinkedList :) Thanks (homework)
The scenario is I wanted to get only the name from the friend list, not the id, dob, and password.Java Code:private LinkedList<Account> friends = new LinkedList<Account>(); public Account(int id, String name, String dob, String word) { this.id = id; this.name = name; this.dob = dob; password = new Password(word); } public LinkedList<Account> getFriendList() { return friends; }
Can someone help me how do I configure my getFriendList() method?
Cheers.Last edited by sunde887; 12-11-2011 at 05:32 AM. Reason: Added code tags, [code]...[/code]
- 12-11-2011, 05:34 AM #2
- Join Date
- Jan 2011
- Location
- Richmond, Virginia
- Posts
- 3,069
- Blog Entries
- 3
- Rep Power
- 7
Re: I need help using LinkedList :) Thanks (homework)
I'm not sure of your question. What is stopping you from retrieving the name? The idea of this is to use a data structure to hold a series of Account objects. You can traverse the list, and then use selectors to extract the proper information.
- 12-11-2011, 05:46 AM #3
Member
- Join Date
- Aug 2011
- Posts
- 8
- Rep Power
- 0
Re: I need help using LinkedList :) Thanks (homework)
Oh I mean, I only wanted to select the name and display it. how do you use selector? can you give me an example?
- 12-11-2011, 10:46 AM #4
- Join Date
- Jan 2011
- Location
- Richmond, Virginia
- Posts
- 3,069
- Blog Entries
- 3
- Rep Power
- 7
Re: I need help using LinkedList :) Thanks (homework)
Similar Threads
-
Need help with LinkedList.
By fsuarjun03 in forum New To JavaReplies: 0Last Post: 04-18-2011, 07:27 PM -
I need help in LinkedList ...
By Usman in forum Advanced JavaReplies: 3Last Post: 03-25-2011, 01:38 AM -
LinkedList
By [RaIdEn] in forum New To JavaReplies: 7Last Post: 10-13-2009, 12:59 AM -
LinkedList help
By jigglywiggly in forum New To JavaReplies: 6Last Post: 09-19-2009, 07:24 AM -
how to use LinkedList
By fred in forum Advanced JavaReplies: 1Last Post: 07-24-2007, 01:52 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks