我的 Java 程序有问题。我的代码在第 16 行 ( t = T[i];
) 中有一个错误,这意味着第 12 行有一个错误。它说:
Syntax error on token "=",VariableInitializer expected after this token.
我可以帮忙吗?
public class Ngrams {
public static boolean estPrefixe(String t, String s) {
int Longs = s.length();
if (t.substring(0, Longs) == s) {
return true;
} else {
return false;
}
}
public static int nbOccurences(String[] T, String s) {
int compteur = 0;
String t = null;
for (int i = 0; i < T.length; i++) {
t = T[i];
if (estPrefixe(t, s)) {
compteur++;
}
return compteur;
}
}