'오류: '.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 중국어 웹사이트의 기타 관련 기사를 참조하세요!