random method in Java code example
Example 1: java random number
import java.util.Random;
Random rand = new Random();
int n = rand.nextInt(50);
n += 1;
Example 2: random java
import java.util.Random();
Random <name> = new Random();
<variable> = <name>.nextInt(<excuslive top limit>);
Example 3: funzione random in java
int n = (int) (Math.random() * 51);
Example 4: java random
int nombreAleatoire = Min + (int)(Math.random() * ((Max - Min) + 1));
Example 5: java random
String id = UUID.randomUUID().toString();