方法一:声明并赋值 Object[] obj = {"1"};
方法二:先声明后赋值Object[] obj=null;obj=new Object[]{"1"}; //或者obj=new Object[1]; obj[0]="1";//或者Object obje2={"1"};obje=obje2;
如下使用会提示:Array constants can only be used in initializers
Object[] obje=null;
obje={"1"};
即不能像使用普通变量一样使用数组!