這裏有很多關於這個錯誤的問題,我讀了許多答案,爲它提供了許多解決方案。我已經做了一些建議的更改並移動/添加「;」但是錯誤又回來了,我認爲解決方案必須是針對不同代碼的個人解決方案,所以我請求你幫助我,請你能建議我採取一些措施來解決這個錯誤?語法錯誤,完成LocalVariableDeclarationStatement
The error says: Syntax error, insert ";" to complete LocalVariableDeclarationStatement
在行:
private static int lengthOfString String string; {
代碼的其餘部分的下面,使你更容易看到錯誤的原因。此刻請忽略一個事實,即代碼是一團糟,我只是在開發它的,不斷變化的:
import java.util.*;
public static void main(String[] args) {
new LenthOfString2().method();
{
System.out.println("Type your text...");
Scanner sc = new Scanner(System.in);
System.out.println(lengthOfString("I need your help programmers, please"));
}
private static int lengthOfString String string; {
int length = -1;
while (true) {
try {
string.charAt(++length);
} catch (StringIndexOutOfBoundsException exception) {
break;
}
}
return length;
System.out.println(sc.nextLine().length());
sc.close();
}
我想提一提,我是一個初學者,我只瞭解基本的Java,所以任何對你的幫助將非常感激。謝謝!
啊..我的眼睛...請格式化。 –