プログラムを作成しようとしていますが、次のコンパイラエラーが発生します。
Main.java:1: error: class WeatherArray is public, should be declared in a file named WeatherArray.java
public class WeatherArray {
^
1 error
ファイル名を確認しましたが、パブリッククラスは.javaファイルと同じです。
どうすればこれを修正できますか?
これが私のコードです:
public class WeatherArray {
public static void main(String[] args) {
// ...
}
}