본문 바로가기
BackEnd FrontEnd/JAVA

Java에서 syntax error on token identifier expected after this token 대처 방법 출처: http://belitino.tistory.com/186 [belitino]

by forkballpitch 2017. 7. 23.
반응형

출처:

http://stackoverflow.com/questions/21343068/syntax-error-on-token-identifier-expected-after-this-token

http://stackoverflow.com/questions/21990742/getting-error-in-eclipse-syntax-error-on-token-start-identifier-expected

 

간단한 java 프로그램인데 Eclipse에서 갑자기 Syntax error on token "XXXXX", identifier expected after this token 에러 메시지가 나오면서 컴파일이 되지 않는 경우가 발생했는데 구글링을 해보니 다음과 같은 경우에 발생하는 오류였습니다.

 

1. 키워드 누락

   첫번채 출처에서처럼 필요한 키워드를 누락하는 경우에 발생. 누락된 키워드를 집어넣은면 문제 해결.

 

2. main() 누락

   main()을 빼먹으면 위의 에러가 발생하는 경우가 있더군요. 저는 main()을 누락해서 발생한 오류였습니다.

 



출처: http://belitino.tistory.com/186 [belitino]

반응형

'BackEnd FrontEnd > JAVA' 카테고리의 다른 글

prepared statement /statement  (0) 2017.09.22
HashMap  (0) 2017.08.02
접근제한  (0) 2017.07.20
assert 함수란  (0) 2017.07.03
직렬화(serialization) 역직렬화(deserialization)  (0) 2017.06.30