2013-04-15 14 views
5

"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(); 

} 
+0

「以前の1つのデータで、新しいものを保持する」とはどういう意味ですか?インスタンスを置き換えていますか? –

+0

OPは彼が最後のオブジェクトの状態(比較のため)と新しいものの状態を維持したいことを意味します – Freak

+0

あなたはコードスニペットを提供できますか? –

答えて

0

あなたがメインでタイプ「A」の参照を宣言し、他のスレッドにそれを渡すことができます。 他のスレッドでは操作を実行し、Aの新しいインスタンスを参照に割り当てます。この

A aVariable; 
Thread t = new Thread(new MyThread(aVariable)); 
t.start(); 
t.join(); 
populateGUI(aVariable); 
関連する問題