gpt4 book ai didi

Java 如何避免字符串索引越界

转载 作者:行者123 更新时间:2023-12-02 01:57:52 24 4
gpt4 key购买 nike

我有以下任务要做:

Return true if the string "cat" and "dog" appear the same number of times in the given string.

catDog("catdog") → true catDog("catcat") → false catDog("1cat1cadodog") → true

我的代码:

public boolean catDog(String str) {
int catC = 0;
int dogC = 0;
if(str.length() < 3) return true;
for(int i = 0; i < str.length(); i++){
if(str.charAt(i) == 'd' && str.charAt(i+1) == 'o' && str.charAt(i+2) == 'g'){
dogC++;
}else if(str.charAt(i) == 'c' && str.charAt(i+1) == 'a' &&
str.charAt(i+2) == 't'){
catC++;
}
}

if(catC == dogC) return true;
return false;
}

但是对于 catDog("catxdogxdogxca")false 我得到了 StringIndexOutOfBoundsException。我知道这是由 if 子句尝试检查 charAt(i+2) 是否等于 t 引起的。我怎样才能避免这种情况?谢谢您的问候:)

最佳答案

for(int i = 0; i < str.length(); i++){ // you problem lies here
if(str.charAt(i) == 'd' && str.charAt(i+1) == 'o' && str.charAt(i+2) == 'g')

您正在使用i < str.length()作为循环终止条件,但您正在使用 str.charAt(i+1)str.charAt(i+2)

因为您需要访问i+2 ,那么您应该将范围限制为 i < str.length() - 2 相反。

for(int i = 0, len = str.length - 2; i < len; i++) 
// avoid calculating each time by using len in initialising phase;

关于Java 如何避免字符串索引越界,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52073708/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com