1.创建3个String的数组。
String[] pets={"Fido","Zeus","Bin"};
2.可以向数组查询它的长度
int x=pets.length;
3.random()这个方法会返回介于0与1之间的值。
4.使用索引数字可以将数组中的元素提取出来
String s=pets[0];//"Fido"
s = s + " " + "is a dog";//"Fido is a dog"
String[] pets={"Fido","Zeus","Bin"};
int x=pets.length;
String s=pets[0];//"Fido"
s = s + " " + "is a dog";//"Fido is a dog"