stringindexoutofrange怎么引起的

stringindexoutofrange怎么引起的

这篇文章主要介绍了stringindexoutofrange怎么引起的,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

  stringindexoutofrange报错问题解决办法,废话不多说,这个错误很容易就能明白其含义:字符串的索引越界了。

  stringindexoutofrange怎么引起的

  一般都是字符串操作引起的,最典型的:

  Stringstr=“123456789”;//字符串长度是9

  StringtempStr=str.substring(0,10);//一定报错:Stringindexoutofrange:10

  该错误是由于字符串操作过程中抛出StringIndexOutOfBoundsException异常,源码如下:

  packagejava.lang;

  /**

  *iseithernegativeorgreaterthanthesizeofthestring.For

  *somemethodssuchasthecharAtmethod,thisexceptionalsois

  *thrownwhentheindexisequaltothesizeofthestring.

  *

  */

  stringindexoutofrange如何解决

  public

  classStringIndexOutOfBoundsExceptionextendsIndexOutOfBoundsException{

  privatestaticfinallongserialVersionUID=-6762910422159637258L;

  /**

  *detailmessage.

  *

  */

  publicStringIndexOutOfBoundsException(){

  super();

  }

感谢你能够认真阅读完这篇文章,希望小编分享的“stringindexoutofrange怎么引起的”这篇文章对大家有帮助,同时也希望大家多多支持亿速云,关注行业资讯频道,更多相关知识等着你来学习!