Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Java Data Structures Exploring the Java Collection Framework Sets

I understand the Enhanced for loop but, in this for loop for(Treet treet: treets) what is "treets" in this for loop.

in this for loop for(Treet treet: treets) what is "treets" in this loop. please explain me. Thanks!

2 Answers

Mohammad Laif
PLUS
Mohammad Laif
Courses Plus Student 22,297 Points

treets is your data list. Treet is the class that your data list created from. treet is the current object in the current loop.

I think it can be any variable like (Treet word : treets)