前提・実現したいこと
eclipseでコードを書いた後実行しましたが、初めて見たエラーでどう対処すればいいか全くわからずに困っています。
初めて見たエラーだったのでコードせいなのか環境のせいなのかも判別できていないです。
どうすれば実行できるでしょうか?
発生している問題・エラーメッセージ
# # A fatal error has been detected by the Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007fff06d0f74a, pid=44872, tid=47856 # # JRE version: Java(TM) SE Runtime Environment (14.0.2+12) (build 14.0.2+12-46) # Java VM: Java HotSpot(TM) 64-Bit Server VM (14.0.2+12-46, mixed mode, sharing, tiered, compressed oops, g1 gc, windows-amd64) # Problematic frame: # C [awt.dll+0x8f74a] # # No core dump will be written. Minidumps are not enabled by default on client versions of Windows # # An error report file with more information is saved as: # D:\Git\home\java\test\hs_err_pid44872.log # # If you would like to submit a bug report, please visit: # https://bugreport.java.com/bugreport/crash.jsp # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. #
該当のソースコード
java
1package test; 2 3import java.awt.Color; 4import java.awt.Graphics; 5 6import javax.swing.JFrame; 7 8 9public class helloworld extends JFrame{ 10 11 public static void main(String[] args) { 12 // TODO 自動生成されたメソッド・スタブ 13 new helloworld(); 14 15 } 16 17 helloworld(){ 18 setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 19 setTitle("helloworld"); 20 setSize(500,600); 21 setVisible(true); 22 } 23 24 public void paint(Graphics g){ 25 g.setColor(Color.blue); 26 g.fillRect(100, 200, 80, 30); 27 } 28 29}
試したこと
・コードの確認
・eclipseの再起動
・eclipseの再インストール
・jdkの再インストール
・eclipse内でのjreの確認
補足情報(FW/ツールのバージョンなど)
jdkバージョン jdk-14.0.2
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。