Code Fix

初級Main method not found in class の原因と直し方 › パターン5

Main method not found in class の原因と直し方

コンパイルは通るのに実行できない典型。

 1  public class Main {
 2      _________ static void main(String[] args) {
            ^
 3          System.out.println("Hello");
 4      }
 5  }
Error: Main method not found in class Mainexited with code 1

空欄を埋めてビルドを通す

広告
広告スロット(未設定)

Main method not found in class の原因と直し方

JVMがmainを見つける条件を1つずつ確認します。

このエラーの解説と類題をまとめて見る →

広告
広告スロット(未設定)