java int 数组报错问题
publicclassshunxulist{publicstaticvoidmain(String[]args){Findfind=newFind();inta[]={1...
public class shunxulist
{
public static void main(String[] args)
{
Find find=new Find();
int a[]={19,2,3,4,5,6,7,8,2,1,5,3};
find.findByKey(a,9);
}
}
class Find
{
public boolean findByKey(int a[],int key)
{
int flag = 0;
for (int i : a)
{
if (a[i] == key)
{
System.out.println("你所查找的值在a["+i+"]中,a["+i+"]="+a[i]);
flag = 1;
return true;
}
}
if (flag == 0)
{
System.out.println("could not find the keyvalue");
return false;
} else
return true;
}
}
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 19
at Find.findByKey(shunxulist.java:17)
at shunxulist.main(shunxulist.java:7) 展开
{
public static void main(String[] args)
{
Find find=new Find();
int a[]={19,2,3,4,5,6,7,8,2,1,5,3};
find.findByKey(a,9);
}
}
class Find
{
public boolean findByKey(int a[],int key)
{
int flag = 0;
for (int i : a)
{
if (a[i] == key)
{
System.out.println("你所查找的值在a["+i+"]中,a["+i+"]="+a[i]);
flag = 1;
return true;
}
}
if (flag == 0)
{
System.out.println("could not find the keyvalue");
return false;
} else
return true;
}
}
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 19
at Find.findByKey(shunxulist.java:17)
at shunxulist.main(shunxulist.java:7) 展开
展开全部
你这个肯定数组跨界了。。。
for (int i : a)
{
if (a[i] == key)
{
System.out.println("你所查找的值在a["+i+"]中,a["+i+"]="+a[i]);
flag = 1;
return true;
}
}
这个地方这么改
int count = 0;
for (int i : a)
{
if (i == key)
{
System.out.println("你所查找的值在a["+count+"]中,a["+count+"]="+a[count]);
flag = 1;
return true;
}
count++;
}
for (int i : a)
{
if (a[i] == key)
{
System.out.println("你所查找的值在a["+i+"]中,a["+i+"]="+a[i]);
flag = 1;
return true;
}
}
这个地方这么改
int count = 0;
for (int i : a)
{
if (i == key)
{
System.out.println("你所查找的值在a["+count+"]中,a["+count+"]="+a[count]);
flag = 1;
return true;
}
count++;
}
追问
非常感谢,但是上面已经有人解答了哦,其实解答你的最实在了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int flag = 0;
for (int i : a)
{
//这里的i是数组a中的元素
if (a[i] == key)//a[i],如果数组的大小是8,而数组的一个元素是45,那是不是越界了呢
{
System.out.println("你所查找的值在a["+i+"]中,a["+i+"]="+a[i]);
flag = 1;
return true;
}
}
for (int i : a)
{
//这里的i是数组a中的元素
if (a[i] == key)//a[i],如果数组的大小是8,而数组的一个元素是45,那是不是越界了呢
{
System.out.println("你所查找的值在a["+i+"]中,a["+i+"]="+a[i]);
flag = 1;
return true;
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
for (int i : a) 已经遍历出数组的值了啊
if (a[i] == key)
这个地方将值作为下标去查了,第一个值是19 a[19]肯定抛数组越界了啊,对吧
if (a[i] == key)
这个地方将值作为下标去查了,第一个值是19 a[19]肯定抛数组越界了啊,对吧
追问
我知道了谢谢哈
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
呃。。。这个错的让我觉得有点无语
你可知道for(int i : a)是什么意思吗?
你可知道for(int i : a)是什么意思吗?
追问
呵呵,你说的对,我才发现的谢谢
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询