"runnable"というクラス "A"を持っていて、Javaアンマーシャラーから新しいオブジェクトを作成します。 MainGUIスレッドは既にクラス "A"にあるget()によってこれらのインスタンスにアクセスしようとします。クラスAで作成したインスタンスを静的にして永久に使用できるようにしましたが、プロパティが異なる完全なインスタンスを新たに取得すると、新しいインスタンスを前の1つのデータと比較して保持する必要があります新しいもの。異なるスレッドのクラス間でオブジェクトを渡す最善の方法は?
この問題の改善策はありますか?
クラス「A」のインスタンスを実行時に静的にすることなく作成するにはどうすればよいですか?
サンプルコード:
public class SOAPMessagesFactory {
private static GetCameraImageResponse getCameraImageResponse;
// process here the msgs in another thread, not shown here in that snipped
if (messageTag.equalsIgnoreCase("GetCameraImageResponse")) {
try {
JAXBElement<GetCameraImageResponse> cameraImageResponse = unmarshaller.unmarshal(SoapBodyReader, GetCameraImageResponse.class);
getCameraImageResponse = cameraImageResponse.getValue();
} catch (Throwable ex) {
ex.printStackTrace();
}
}
public GetCameraImageResponse getCameraImageResponse() {
if (getCameraImageResponse != null) {
return getCameraImageResponse;
} else {
return null;
}
}
// in main gui
public void UpdateGUI() {
GetCameraImageResponse cameraImageResponse = messageFactory.getCameraImageResponse();
}
「以前の1つのデータで、新しいものを保持する」とはどういう意味ですか?インスタンスを置き換えていますか? –
OPは彼が最後のオブジェクトの状態(比較のため)と新しいものの状態を維持したいことを意味します – Freak
あなたはコードスニペットを提供できますか? –