如下是一个数组一遍历
int[] arr={1,2,3};
for(int i=0;i<arr.length;i++)
{
System.out.println(arr[i]);
}作者: 爱翚 时间: 2014-5-1 19:58
public class ForForTest {
public static void main(String[] args) {
//new操作的动作是根据类创建一个对象,而x是变量不是类或基本数据类型
//char[] x = new x[3];
char[] x = new char[3];