Results 1 to 1 of 1
- 04-10-2008, 01:28 AM #1
Member
- Join Date
- Apr 2008
- Posts
- 1
- Rep Power
- 0
iterating through a collection of objects
I'm working on a university project using BlueJ. It involves creating
a GUI that displays nine buttons that each hold a value from 1 to 9. I
need to know how to iterate through the collection of buttons and
return their combined value
(45 in this case).
My array is called gameTile and its initialized as:
gameTile = new Tile[9];
for(int i = 0; i < 9; i++) {
gameTile[i] = new Tile(1+i);
}
When I click one of the nine buttons the value of that button becomes
zero, but if it is not clicked it should retain its value so when i go
through the array I want to add up all the button values that have not
been changed to zero.
My iterator looks like this
Private void totalUp {
Iterator<Tile> totalUp = gameTile[9].iterator ();
while(totalUp.hasNext()) {
System.out.println(totalUp.next(gameTile.value));
}
I appreciate any help in this matter. :-)
Similar Threads
-
Iterating through a HashSet
By Java Tip in forum Java TipReplies: 0Last Post: 01-21-2008, 04:34 PM -
Iterating through ArrayList using For loop
By Java Tip in forum Java TipReplies: 0Last Post: 01-20-2008, 08:53 AM -
Iterating through ArrayList
By Java Tip in forum Java TipReplies: 0Last Post: 01-20-2008, 08:50 AM -
Iterating through result set in JSTL
By Java Tip in forum Java TipReplies: 0Last Post: 01-15-2008, 03:13 PM -
Iterating through result set in JSTL
By Java Tip in forum Java TipReplies: 0Last Post: 01-14-2008, 09:31 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks