- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我写了一个 TokenizableString
类,它对用户输入的字符串进行标记化。这是它应该如何进行的示例
我输入
"My name is methos"
我应该在控制台中看到以下内容
'My'
'name'
'is'
'methos'
有一个问题,当我输入以下内容时:"Badr "
我收到以下异常:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 4
at exercicesPOO.TokenizableString.<init>(TokenizableString.java:40)
at exercicesPOO.TokenizableString.main(TokenizableString.java:127)
Java Result: 1
而所需的输出应该是:'Badr'
。请注意,单词末尾的空格已被删除(我的代码中有一个方法)。
我研究我的代码已经有一段时间了,但我仍然无法找到“索引越界”错误的来源。
我试过运行调试器,它似乎永远不会超出对这个特定输入的构造函数调用:“Badr”
。
另外,请您对我的编码的可读性/质量打分。非常欢迎任何建议/评论。在此先致谢。
P_S:我正在使用 Netbeans。
代码如下:
package debugging;
import java.util.ArrayList;
import java.util.Locale;
import java.util.Scanner;
public class TokenizableString {
static Scanner scanner = new Scanner(System.in).useLocale(Locale.US);
private String contenu;
private int from;
private int len;
//Constructeurs
public TokenizableString(String contenu)
{
this.contenu = contenu;
System.out.print(this.contenu);
System.out.println("<--- Ended here");
this.removeExtraSpaces();
System.out.print(this.contenu);
System.out.println("<--- Ended here");
this.from=0;
this.len = 0;
char[] contenuChar = this.contenu.toCharArray();
int i = 0;
do
{
this.len++;
i++;
}while(i<contenuChar.length && contenuChar[i] != ' ');
// La condition est qu'il faut calculer la longueur de la première séquence de lettres (du premier mot) en itérant soit jusqu'au prochain ' ' (espace) ou jusqu'à atteindre la fin de la phrase.
//The condition is that we have to calculate the length of the first sequence of letters (first word) by iterating until the next ' ' (blank space) or until we reach the end of the sentence.
}
//Methods
//removeExtraSpaces() removes the spaces that the user would have entered at the end of the inputed string for example : "Badr " would become "Badr"
private void removeExtraSpaces()
{
boolean Acc = true;
do
{
if(this.contenu.charAt(this.contenu.length()-1)==' ')
{
char[] temp = new char[this.contenu.length()-1];
for(int i = 0 ; i < this.contenu.length() -1; i++)
{
temp[i] = this.contenu.charAt(i);
}
String tempStr ="";
for(int i = 0; i < temp.length; i++)
{
tempStr += temp[i];
}
this.contenu = tempStr;
if(this.contenu.charAt(this.contenu.length()-1)==' ')
{
Acc= false;
}
else
{
Acc = true;
break;
}
}
}while(Acc == false);
}
//nextToken() places the 'from' in the beggining of a word and calculates the length of that given word via 'len'. If there we reach the end of the sentence this method will return false.
public boolean nextToken()
{
char[] contenuChar = this.contenu.toCharArray();
if ( (this.from+this.len+1) < contenuChar.length && ( ( this.from == 0 && contenuChar[this.from+this.len] == ' ' ) || ( this.from !=0 && contenuChar[this.from - 1] == ' ' ) ) )
{
this.from += (this.len +1);
this.len = 0;
int i = this.from;
while( i < contenuChar.length)
{
if(contenuChar[i] != ' ')
{
this.len++;
i++;
}
else
{
break;
}
}
//Nous avons donné une nouvelle valeures aux variables from et len.
//System.out.println("from = "+this.from+" || len= "+this.len);
return true;
}
return false;
}
//putting the given words of a sentence via previous method into a dynamic array.
public void tokenize()
{
ArrayList <String> mots = new ArrayList<>();
do
{
String mot = "";
for(int i = from; i < (this.len+this.from); i++)
{
mot += contenu.charAt(i);
}
mots.add(mot);
}while(this.nextToken() == true);
for(String mot : mots)
{
System.out.println("'"+mot+"'");
}
}
public static void main(String[] args) {
String phrase;
System.out.println("Entrez une chaine :");
phrase = scanner.nextLine();
TokenizableString toToken = new TokenizableString(phrase);
toToken.tokenize();
}
}
最佳答案
您的 while 条件顺序错误,首先检查 i 是否在范围内,然后检查空格。
关于java - ArrayIndexOutOfBounds,无法定位其原点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28612003/
实体类是: DeviceWithReading.java package com.fde.entity; import java.util.Set; import javax.persistence.
这个问题在这里已经有了答案: What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? (26 个
我有一个小问题,当我尝试从文件读取时,我会遇到 arrayindexoutofboundsException 。我不知道有更好或更详细的解释方法,所以我将粘贴下面的代码和错误。这一切都在我的程序的 m
我写了这个方法: public static Bitmap matrixToBitmap(int[][] slika) { int w = slika[0].length;
我的代码需要一些帮助,当我尝试运行它时,它给了我 arrayindexoutofbounds 0 异常,它指向“results[counter]=random;”行,以及我在它之前写的 system.
我需要以蛇的形式打印矩阵。因此对于这个矩阵,输出应该是: 我的问题是这段代码抛出 ArrayIndexOutofBounds。我该如何处理才能避免这种情况? int[][] mat= {{1,2,3}
我正在制作阿拉伯数字转换器并收到错误: Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0 at ar
我不明白为什么会发生这种情况。如果没有 print 语句,代码可以正常工作,但是当我尝试打印元素时,我得到 ArrayIndexoutOfBounds。例如,如果我尝试提供 3 个元素,则会抛出异常。
我正在尝试将 Google 任务与我的应用程序同步。为此,我创建了一个类,在其中创建了需要获取任务列表和创建列表等的所有方法。 现在我想测试一下这些方法是否有效。为此,我创建了一个扩展 AsyncTa
这个问题已经有答案了: What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? (25 个回答)
所以我目前正在研究多维数组(2D),并且尝试反转二维数组中每个数组的顺序。 所以我有一个二维数组设置为:int firstArray[][] = {{5,6,7,8,9,10}, {11,12,13,
问题出在int [][]tam = new int [a][b]处。就只有那一条线。我是 Java 新手,有 C++ 背景。 //"Exercitiul" 3 Scanner input = new
这是我遇到索引越界异常的代码,我不明白为什么, int index = array.length - 1; E item = array[index]; while (item == null
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
public class Environment { //variables RoundingStage[][] land; int horizontalStreets;
我正在尝试创建一种使用动态编程计算(N 选择 R)的方法,但出现数组越界异常: Exception in thread "main" java.lang.ArrayIndexOutOfBoundsEx
public Pasient[] finnPasient(String dato) { int j = 0; Pasient[] p = new Pasient[j]; for
所以我有一个数组 Canvas[256][256],它的随机索引 Canvas[r][r] (r 是随机的)设置为 1。然后我想循环遍历该数组以准确查看哪个索引是不是 0,然后随机选择一个点(上、下、
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我写了一个 TokenizableString 类,它对用户输入的字符串进行标记化。这是它应该如何进行的示例 我输入 "My name is methos" 我应该在控制台中看到以下内容 'My' '
我是一名优秀的程序员,十分优秀!