Results 1 to 6 of 6
Thread: Searching arrays
- 12-03-2009, 04:27 PM #1
Member
- Join Date
- Nov 2009
- Posts
- 9
- Rep Power
- 0
Searching arrays
Hello,
I have a main class which is the menu and branches off to a few classes with execute's for each selection. I pass the array to the classes and need to search the array for different variables depending on the selection.
array input ex : new PropertyListing(1445, 'L', "Orleans", "50 x 90 service lot", 50000)
Say I'm searching for 1445 (listingNumber) how would I go about doing that? How would I match the listing number and the information with it?
- 12-03-2009, 04:32 PM #2
Loop over the array and check every PropertyListing for 1445.
Math problems? Call 1-800-[(10x)(13i)^2]-[sin(xy)/2.362x]
The Ubiquitous Newbie Tips
- 12-03-2009, 05:07 PM #3
Member
- Join Date
- Nov 2009
- Posts
- 9
- Rep Power
- 0
I have the while loop that loops through the entries and inListingNumber which is an int that the user enters
while(i < curList.currentListings.length && !false)
{
if(inListingNumber == curList.currentListings[i])
}
is what I have but the if statement gives me an operand error
- 12-03-2009, 05:17 PM #4
curList.currentListings[i] should be a PropertyListing. So I think you need
Java Code:if (inListingNumber == curList.currentListings[i].listingNumber)
Math problems? Call 1-800-[(10x)(13i)^2]-[sin(xy)/2.362x]
The Ubiquitous Newbie Tips
- 12-03-2009, 05:22 PM #5
Member
- Join Date
- Nov 2009
- Posts
- 9
- Rep Power
- 0
Thanks!
I had tried putting that in there but put it in the wrong place.
Thanks again for the quick replies.
- 12-03-2009, 05:23 PM #6
You're welcome.
Math problems? Call 1-800-[(10x)(13i)^2]-[sin(xy)/2.362x]
The Ubiquitous Newbie Tips
Similar Threads
-
Searching in several fields
By ivaneggel in forum LuceneReplies: 0Last Post: 11-11-2009, 09:24 AM -
Searching through a list.
By wethekings in forum New To JavaReplies: 3Last Post: 02-24-2009, 12:43 PM -
Searching Arrays
By BHCluster in forum New To JavaReplies: 3Last Post: 07-26-2008, 05:55 AM -
Problem with searching while using GUI
By BHCluster in forum AWT / SwingReplies: 1Last Post: 04-24-2008, 06:56 PM -
searching
By nalinda in forum New To JavaReplies: 3Last Post: 12-06-2007, 02:56 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks