前提・実現したいこと
JavaFxでGUIを作っています。
他のアプリケーションと共通の実装を分離中に以下のエラーメッセージが発生しました。
静的デバッグでもエラーはなく
コンパイルエラーもApplicationという自分が書いていない部分を指してしまっているので
どうしたものかと頭を抱えています。
どうかどうすれば解決できるか、ご教授お願いいたします。
発生している問題・エラーメッセージ
Exception in Application constructor Exception in thread "main" java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at sun.launcher.LauncherHelper$FXHelper.main(LauncherHelper.java:767) Caused by: java.lang.RuntimeException: Unable to construct Application instance: class App at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:907) at com.sun.javafx.application.LauncherImpl.lambda$launchApplication$1(LauncherImpl.java:182) at java.lang.Thread.run(Thread.java:748) Caused by: java.lang.NoSuchMethodException: App.<init>() at java.lang.Class.getConstructor0(Class.java:3082) at java.lang.Class.getConstructor(Class.java:1825) at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$7(LauncherImpl.java:818) at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$7(PlatformImpl.java:326) at com.sun.javafx.application.PlatformImpl.lambda$null$5(PlatformImpl.java:295) at java.security.AccessController.doPrivileged(Native Method) at com.sun.javafx.application.PlatformImpl.lambda$runLater$6(PlatformImpl.java:294) at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95) at com.sun.glass.ui.win.WinApplication._runLoop(Native Method) at com.sun.glass.ui.win.WinApplication.lambda$null$3(WinApplication.java:177) ... 1 more
該当のソースコード
Java
1//compile:encoding=utf-8 2import javafx.application.Application; 3import javafx.stage.Stage; 4import javafx.scene.Scene; 5import javafx.scene.Group; 6import javafx.scene.canvas.*; 7import javafx.scene.paint.Color; 8/*import javafx.event.*; 9import javafx.scene.input.*; 10import java.util.function.*;*/ 11 12 13class App extends AppBase{ 14 public Canvas canvas; 15 public GraphicsContext ctx2D; 16 17 void initial(){ 18 canvas = new Canvas(WIDTH, HEIGHT); 19 ctx2D = canvas.getGraphicsContext2D(); 20 root_group.getChildren().add(canvas); 21 ctx2D.setFill(Color.RED);//以後描写するものの色を設定 22 } 23 24 void main_loop(){ 25 } 26 27 void drag_event(double x,double y){ 28 ctx2D.fillOval(x, y, 5, 5); 29 } 30} 31 32class AppBase extends Application { 33 int WIDTH; 34 int HEIGHT; 35 int FPS; 36 Color BGColor; 37 Stage stage; 38 Group root_group = new Group(); 39 Scene main_scene; 40 /*public static void main(String[] args){ 41 System.out.println(System.currentTimeMillis()); 42 }*/ 43 44 AppBase() { 45 WIDTH = 320; 46 HEIGHT = 420; 47 FPS = 45; 48 BGColor = Color.rgb(25,25,25); 49 } 50 AppBase(int width,int height,int fps,Color bg) { 51 WIDTH = width; 52 HEIGHT = height; 53 FPS = fps; 54 BGColor = bg; 55 } 56 57 @Override 58 public void start(final Stage received_stage){ 59 stage = received_stage; 60 initial(); 61 62 main_scene = new Scene(root_group, WIDTH, HEIGHT, BGColor); 63 stage.setScene(main_scene); 64 65 class DragEvent{ 66 double x = 0; 67 double y = 0; 68 DragEvent(Scene scene) { 69 scene.setOnMouseDragged(e -> { 70 this.x = e.getX(); 71 this.y = e.getY(); 72 this.func(this.x,this.y); 73 }); 74 } 75 void func(double x,double y){ 76 drag_event(x, y); 77 } 78 } 79 new DragEvent(main_scene){}; 80 81 final Thread thread = new Thread(()->{//mainloop 82 long now; 83 long old; 84 long err = 0; 85 long slp; 86 long frm_mirsec = 1000/this.FPS; 87 while(true){ 88 old = System.currentTimeMillis(); 89 this.main_loop(); 90 now = System.currentTimeMillis(); 91 slp = frm_mirsec-(now-old)+err;//1000ms / fps - 処理時間 - 前回のスリープにおける誤差 92 if (slp < frm_mirsec/2) {slp = frm_mirsec/2;}; 93 old = now;//old更新:処理終了まで 94 try{ 95 Thread.sleep(slp); 96 }catch(Exception e){ 97 } 98 err = slp-(System.currentTimeMillis()-old); 99 } 100 }); 101 thread.setDaemon(true); 102 thread.start(); 103 104 stage.show(); 105 } 106 107 void main_loop(){ 108 } 109 110 void initial(){ 111 } 112 113 void drag_event(double x,double y){ 114 } 115}
回答2件
あなたの回答
tips
プレビュー