理解'错误:'.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中文网其他相关文章!