理解'錯誤:'.class'預期'
錯誤描述:
這個當編譯器在需要表達式的上下文中遇到型別名稱時,編譯期間會發生錯誤。此錯誤訊息表示編譯器感到困惑,並認為該位置需要 .class 表達式。
原因:
修復:
解決方案取決於預期的代碼:
double d = 1.9; int i = (int) d; // Correct: cast 1.9 to integer
int j = someFunction(a); // Correct ... assuming 'a' is appropriate
其他範例:
someMethod(array[]);
int i = someMethod(int j); // Should be: int i = someMethod(j);
int i = int(2.0); // Should be: int i = (int) 2.0;
int[]; letterCount = new int[26];
if (someArray[] > 80) { // Should be: if (someArray[someIndex] > 80)
if ((withdraw % 5 == 0) && (acnt_balc >= withdraw + 0.50)) double cur = acnt_balc - (withdraw + 0.50); System.out.println(cur); else System.out.println(acnt_balc);
以上是為什麼我在 Java 中遇到「錯誤:\'.class\'預期」編譯錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!