随机生成string.
发表于:2007-07-01来源:作者:点击数:
标签:
随机生成string..
class Str { public static void main(String args[]) { char[] cc = new char[10]; for (int i = 0; i<cc.length; i++) { while(cc[i]<@#A@# || cc[i]>@#Z@#)//why using while not if? 为什么用while cc[i]=(char)(Math.random()*(int)@#Z@#); //System.out.println(cc[i]); }//end for String str = new String(""); for (int i = 0; i<cc.length; i++) str += cc[i]; System.out.println(str); } }
可生成一个固定长度的随机字母string..??如何让string的长度随机呢?还有就是为什么while而没有用if??
高手指点一下.
原文转自:http://www.ltesting.net