产生随机数:
import java.util.*;
public class TestRandom {
/**
* @param args
*/
public static void main(String[] args) {
Random ran = new Random();
int a = ran.nextInt(256);//返回一个伪随机数,在 0(包括)和指定值(不包括)之间均匀分布的 int 值
System.out.println(a);
int b = (int)(Math.random()*256); //random()返回大于等于 0.0 且小于 1.0 的伪随机 double 值
System.out.println(b);
}
}
intValue
public int intValue()以 int 类型返回该 Integer 的值。
指定者:
类 Number 中的 intValue
返回:
转换为 int 类型后该对象表示的数值。