有一个问题真的让我很害怕。所以我们有一个 MainView,它在上面显示一个地图(MapView,它是一个 JComponent)。在 MapView 类中,我们覆盖了paintComponent(Graphics g) 来绘制我们的自定义内容。到目前为止工作正常。
我们还有一个 RouteControl 单例类,其中有一个局部变量 Route,我们可以使用 setRoute 设置它并使用 getRoute 检索。现在有趣的部分:
当在我们的 MapView paintComponent 中检索 RouteControl 实例时,Route 始终为空。但是我们在 MainView 中设置了一个路由,如果我们在设置后检索该路由,则它不为空。
我在这里错过了一个关键点,比如多线程吗?我还有一个带有 get/setMap 的单例类 MapControl 。
项目代码:
public class MainView extends javax.swing.JFrame {
private static MainView instance;
private void comboRouteActionPerformed(java.awt.event.ActionEvent evt) {
File _routeFile = RouteControl.getInstance().getRouteFile(comboRoute.getSelectedItem().toString());
Route _route = RouteControl.getInstance().loadRoute(_routeFile);
RouteControl.getInstance().setRoute(_route);
// if we retrieve the route here it works
}
}
现在 MapView:JComponent:
public class MapView extends JPanel {
@Override
public void paintComponent(Graphics g) {
super.paintComponent(g);
// this nicely works, also set in the MainView!
if(MapControl.getInstance().getMap() != null) {
BufferedImage mapImage = MapControl.getInstance().getMap().getMapImage();
g.drawImage(mapImage, 0, 0, null);
// draw le route THIS IS ALWAYS NULL
if(RouteControl.getInstance().getRoute() != null) {
g.setColor(Color.red);
g.fillRect(40, 40, 15, 15);
}
else {
System.out.println("**** route is null");
}
}
}
}
路线控制:
public class RouteControl {
private static RouteControl instance;
private Route route;
public static synchronized RouteControl getInstance() {
if (instance == null) {
instance = new RouteControl();
}
return instance;
}
public Route getRoute() {
return route;
}
public void setRoute(Route route) {
System.out.println("RouteControl:setRoute");
this.route = route;
}
}