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 trialABHISHEK RAI
4,865 PointsThread with loops
how looping around the download button in the first case will start downloading all the songs at once?
2 Answers
Ben Deitch
Treehouse TeacherHey Abhishek!
If we loop inside the 'onClick' method, we'd be creating a new Thread for each song. And since more than one Thread can run at a time, each of those Threads would run in parallel, and we'd be downloading all the songs at the same time.
ABHISHEK RAI
4,865 Pointscool sir thanks...