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

Random randomGenerator = new Random(); meaning????

Hi Treehouse Community, I am confused about this line that Ben Deitch used in his Android Programming Tutorial [Build a Simple Android App with Java]. Video Title: Choosing a Random Fact What is the meaning of Random randomGenerator = new Random();

1 Answer

Hello!

Random randomGenerator = new Random();

The code above creates a new Random object which is assigned to the randomGenerator variable of the same type. Then it calls .next(number), where number is the highest value the number random can take.

For example,

Random randomNumberGenerator = new Random();
int randomNumber = randomNumberGenerator.next(150);

// randomNumber will be a number between 0 and 150

Hope it helped!