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

Android Build a Simple Android App with Java Improving Our Code Adding More Colors

Kibet Kech
Kibet Kech
5,526 Points

Hey, 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
STAFF
Ben Deitch
Treehouse Teacher

Good 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.