반응형
오류 메시지
!error: class ex_class is public, should be declared in a file named ex_class.java
Main.java:5: error: class ex_class is public, should be declared in a file named ex_class.java public class ex_class { ^ 1 error
매번 C++로 파일을 제출해서 (그냥 Ctrl+A 한 뒤 제출 탭에 붙여 넣으면 되니까...)
자바도 그냥 제출했더니 발생한 무수한 오류의 요청....
백준에선 JAVA 코드를 제출할 때 Main.java로 가정하여 받기 때문에 Main class로 제출해야 컴파일 에러가 발생하지 않습니다.
public class Main {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
반응형
'🚫ERROR' 카테고리의 다른 글
[mySQL 오류] ERROR 1045 (28000): Access denied for user 'root'@'localhost' (0) | 2021.04.19 |
---|---|
[LINK1104, LNK1168, Visual Studio] 컴파일 에러 해결 방법 (~를 쓰기용으로 열 수 없습니다.) (0) | 2020.12.27 |
[BOJ] 런타임 에러가 발생하는 이유 (0) | 2020.12.03 |
[BOJ] error: ‘strlen’ was not declared in this scope (0) | 2020.12.02 |
파이썬 오류 : ModuleNotFoundError: No module named 'urllib2' (0) | 2020.11.19 |