博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1
阅读量:5809 次
发布时间:2019-06-18

本文共 362 字,大约阅读时间需要 1 分钟。

  • 场景:eclipse中编写java中用到数组

  • 问题:

      程序不报错但是运行过程中 终止,显示字样

Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1

  • 截图:

  

 

  • 原因:

Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException

这句话表示异常出现在main这个线程里面,错误是java.lang.ArrayIndexOutOfBoundsException。这个错误是你下标获取超出范围了,一般是例如你数组长度为2.但是你获取数组[3].这时候就会报这个错

转载于:https://www.cnblogs.com/lxmwb/p/5891356.html

你可能感兴趣的文章
cocos2d::Vector
查看>>
nginx内部锁的实现
查看>>
基于Angular和Firebase开发应用-总览
查看>>
【Vue项目总结】webpack常规打包优化方案
查看>>
在项目中自定义路径放入element-ui并修改编译源码
查看>>
Android 视频无缝切换2.0
查看>>
对象~时间篇_日历的实现
查看>>
Vue2.0配置mint-ui踩过的那些坑
查看>>
如何做到input file中‘选择文件’的自定义
查看>>
npm ERR! cb() never called! 解决办法
查看>>
Web安全浅说
查看>>
Uber RIBs框架源码分析
查看>>
(译) js中的值相等和引用相等
查看>>
代码片段之jQuery控制input只能输入数字和两位小数
查看>>
不得不学之「 Gradle」 ⑤ Gradle 插件
查看>>
私服release库和snapshot库的区别
查看>>
前端数据层的探索与实践(二)
查看>>
nginx反向代理、文件批量改名及统计ip访问量等精髓总结
查看>>
我要做 Android 之 Service
查看>>
react hooks 实践总结(一):class component 和 function component
查看>>