报错:java.lang.ArrayIndexOutOfBoundsException——数组越界
程序员文章站
2022-06-15 13:48:36
...
题目:
给定一个排序数组,你需要在原地删除重复出现的元素,使得每个元素只出现一次,返回移除后数组的新长度。不要使用额外的数组空间,你必须在原地修改输入数组.
class Solution {
public int removeDuplicates(int[] nums) {
int count=nums.length;
for(int i=0;i<count; i++)
{
if(nums[i]==nums[i+1])
{
for(int j=i;j<count;j++)
{
nums[j]=nums[j+1];
}
count--;
i--;
}
}
return count;
}
}
这样写代码的话系统就会报出这样的错误:
java.lang.ArrayIndexOutOfBoundsException: 4
at line 10, Solution.removeDuplicates
at line 54, __DriverSolution__.__helper__
at line 79, __Driver__.main
java.lang.ArrayIndexOutOfBoundsException——数组越界,当程序中数组的下标超出数组的表示范围的时候,就会报错:java.lang.ArrayIndexOutOfBoundsException,报错的第二行line:10,表明错误在第十行,即: nums[j]=nums[j+1]; 在这句代码中,当 j 为最大值:j=nums.length-1时,j+1已经超出了数组的表示范围,所以会报数组越界的错误。
该正后代码:
class Solution {
public int removeDuplicates(int[] nums) {
int count=nums.length;
for(int i=0;i<count-1; i++)
{
if(nums[i]==nums[i+1])
{
for(int j=i;j<count-1;j++)
{
nums[j]=nums[j+1];
}
count--;
i--;
}
}
return count;
}
}
最后我想提醒大家数组在使用的时候,一定要注意数组的长度,不要越界。
推荐阅读
-
牛客网在线判题出现“请检查是否存在数组越界等非法访问情况”的情况
-
基于php双引号中访问数组元素报错的解决方法
-
导出图片报错:java.lang.ArrayIndexOutOfBoundsException: 0
-
.NET下模拟数组越界的方法详解
-
c++ 编译 curl 报错 数组‘__curl_rule_01__’的大小为负 解决方法
-
C语言数组越界导致死循环问题
-
Python 切片索引越界的问题(数组下标越界)
-
easypoi 3.1.0版本下报数组下标越界
-
从Vuex中取出数组赋值给新的数组,新数组push时报错的解决方法
-
searchDisplayController 引起的数组越界处理办法