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 trialKibet Kech
5,526 PointsHey, why dont you instantiate the random number generator on the class level.
Hey, why dont you instantiate the random number generator on the class level. does it mean that everytime i tap the button the class is instantiated? Thanks.
1 Answer
Ben Deitch
Treehouse TeacherGood catch! That could totally be a class variable. Strictly speaking it would use less resources, but functionally it wouldn't make any difference; creating a Random object isn't expensive and Button clicks aren't that frequent.
Though one place where you want to watch this sort of stuff VERY closely is in video games. If you're rendering 60 frames a second and you're allocating a new variable each time, you'll definitely run into some problems.