使用了Math類的random()方法, 由於Math類是出於java.lang包(Package),故使用時不必import這個包。
此外本例還使用了移位運算符
- /**
- * 使用了Math類的random()方法,
- * 由於Math類是出於java.lang包(Package),故使用時不必import這個包。
- * <p>
- * 此外本例還使用了移位運算符
- * @author HAN
- *
- */
- public class Test_random {
- public static void main(String[] args) {
- char ch=(char)('a'+Math.random()*('z'-'a'+1));
- System.out.println(ch);
-
- int a=2;
- System.out.println(a<<7);//移位1位相當於乘以2
- }
-
-
- }