java 数组下标越界异常 因为算法是这样,i-1出现小于0的情况,如何让程序忽略这种情况,继续正确运行下去

publicstaticvoidmain(String[]args){intarray[][]=newint[7][7];System.out.println("Doyo... public static void main(String[] args){
int array[][] = new int [7] [7];

System.out.println("Do you want do distance ? \nplease enter yes or no.");
Scanner input = new Scanner(System.in);
String str = input.next();

if ("yes".equals(str))
{

System.out.println( "Do city-blcok" );
//forward pass
for ( int i = 0; i < array.length; i++) {
for(int j = 0; j < array[0].length; j++){
array[i][j] = 100;
array[3][3] = 0;
int a = array[i][j]+ 0;
int b = array[i-1][j]+1;
int c = array[i][j-1]+1;
int dis = getMin(a,b,c);
array[i][j]= (int)dis;
System.out.print((int)array[i][j] + " , ");
}
System.out.println();
}
//backward pass
for (int i = array.length -1; i>=0; i--){
for (int j = array[0].length-1;j>=0;j--){
int a = array[i][j]+0;
int b = array[i+1][j]+1;
int c = array[i][j+1]+1;
int dis = getMin(a,b,c);
array[i][j] = (int)dis;
System.out.print((int)array[i][j] + " , ");
}
System.out.println();
}
}

}
java怎么在 数组下标越界异常 情况下继续运行程序
展开
 我来答
初世情怀
2013-12-05
知道答主
回答量:17
采纳率:0%
帮助的人:9.3万
展开全部
那你何不把for循环改成for(i = 1;i<=array.length;i++){for(j = 1;j<=array.length;j++)}呢?反正i= 0和j = 0时那段代码的循环都执行不了,如果实在不行,还可以加个if判断啊,就是当i或j等于0时跳出循环continue不就得了。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
浮夢鴨9N
2013-12-05
知道答主
回答量:47
采纳率:28%
帮助的人:14.4万
展开全部
用try catch把越界异常捕获并处理就可以了。
比如:
.......
try{
int a = array[i][j]+ 0;
int b = array[i-1][j]+1;
int c = array[i][j-1]+1;
int dis = getMin(a,b,c);
array[i][j]= (int)dis;
...
}catch(ArrayIndexOutOfBoundsException e){
e.printStackTrace();
contion;
}
.......
你的代码是干嘛的 我没看明白
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
guolf2012
2013-12-05
知道答主
回答量:14
采纳率:0%
帮助的人:8.3万
展开全部
你是要解决这两行int b = array[i-1][j]+1;int c = array[i][j-1]+1;越界的问题么?
如果是的话可以这样int b =0;try{ b=array[i-1][j]+1;}catch(Exception e){b=你想要的结果},int c的值也同样处理
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
乔巴绝对是狸猫
2013-12-05 · 超过13用户采纳过TA的回答
知道答主
回答量:64
采纳率:0%
帮助的人:39.9万
展开全部
无法避免,建议你从array[1][1]开始使用,边界array[0][n],array[n][0]设置成足够大的数字。
或者是增加判断
或者是上面两个从1开始循环
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
hnhygkx1987
2013-12-05 · TA获得超过209个赞
知道小有建树答主
回答量:210
采纳率:0%
帮助的人:138万
展开全部

int b = array[i-1][j]+1;
int c = array[i][j-1]+1;

加判断吧!

 if((i-1)<0 )
continue ;

if((j-1)<0 )
continue ;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式