JavaでSwingを使いJFrameを利用すると以下のエラーがでます。
Swingを使ったときだけエラーがでるので何か原因があるのだと思いますが
調べても解決方法が見つかりませんでした。
初歩的な設定ミスかもしれませんが、ご教授いただければ幸いです。
エラーメッセージ
# # A fatal error has been detected by the Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffa0690f98a, pid=4804, tid=1944 # # JRE version: Java(TM) SE Runtime Environment (13.0.1+9) (build 13.0.1+9) # Java VM: Java HotSpot(TM) 64-Bit Server VM (13.0.1+9, mixed mode, sharing, tiered, compressed oops, g1 gc, windows-amd64) # Problematic frame: # C [awt.dll+0x8f98a] # # 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: # C:\Users\t.nagisa.G01\Documents\Visual Studio 2010\Projects\localApp3\hs_err_pid4804.log # # If you would like to submit a bug report, please visit: # http://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
1import javax.swing.JFrame; 2 3public class App { 4 public static void main(String[] args) { 5 6 JFrame frame = new JFrame("MyTitle"); 7 frame.setVisible(true); 8} 9]
開発環境
開発環境 Visual Studio Code
言語 Java 13
タグは「Visual Studio Code」にしてください
Visual Studioではjavaの開発はできません
また、質問本文の開発環境も略さずに「Visual Studio Code」と書きましょう
この程度の略なら誰でもわかるやろとあなたは思うかもしれませんが、書いた人にとっては当たり前の略と思っていても、一般的には別の意味でしか使用しない略語というものもあり、そのせいで書いた人以外には混乱を生じる場合もあります
何だったか忘れましたが、「AI」と書くと普通は「人工知能」を示しますが、全く違う言葉だったというやり取りを少し前にどこかで見ましたので
また、javaのバージョンも記載してください
書いてあるエラーログには載っていますが質問の先頭もしくは最後に独立して記載した方が見落としにくいです
ご指摘ありがとうございます。
誤解の内容に編集します。
回答1件
あなたの回答
tips
プレビュー