index 199 is out of bounds for axis 1 with size 199
时间: 2024-01-03 20:05:29 浏览: 127
使用BoundsChecker检测内存泄漏
3星 · 编辑精心推荐
This error message occurs when you are trying to access an index that is outside the range of the array or list. In this specific case, you are trying to access index 199, but the size of the array or list is only 199, meaning the highest index available is 198.
To fix this error, you should make sure that the index you are trying to access is within the range of the array or list. Alternatively, you can check the size of the array or list and adjust your code accordingly.
阅读全文