当前位置: 代码迷 >> J2SE >> 生手提问- 二维数组赋值 来看看代码
  详细解决方案

生手提问- 二维数组赋值 来看看代码

热度:58   发布时间:2016-04-23 20:33:02.0
新手提问- 二维数组赋值 来看看代码


public class test {
public static void main(String args[])
{
String s="bbbbbbb111d11m22d22m33d33c444d44m55d55m66d66c777d77m88d88m99d99bbbbbbb";
s=s.replace("b", "");
s=s.replace("d", ".");
String [] temp;
temp=s.split("c");
String [][] Object;//=new String[temp.length][temp1.length];
for(int i=0;i<temp.length;i++)
{
String [] temp1;
temp1=temp[i].split("m");
for (int j =0;j<temp1.length;j++){
Object[i][j]=temp1[j];
}
}
}

}


为啥会报错呢???
------解决方案--------------------
引用:
String temp也没初始化 怎么没事呐
这两个有什么区别吗


String [] temp;  // 声明
temp=s.split("c");  // 初始化
  相关解决方案