0
我有這樣定義一個DateTime微調:SWT的DateTime的setDate()錯誤
//Class Global
DateTime dateMin = null;
//added to the UI
DateTime dateMin = new DateTime(grpPlaybackSearchOptions, SWT.BORDER);
dateMin.setBounds(335, 44, 123, 23);
後來在我的代碼我希望用戶能夠加載可能已經保存過的日期。通過swt DateTime文檔挖掘我沒有看到我如何更新日期。
我已經試過,但收到異常錯誤:
//running from a method
dateMin.setDate(pMinDate[0], pMinDate[1], pMinDate[2]);
能的對象不會被更新或我試圖不正確地更新對象?
謝謝!
Baz,謝謝你的回覆SE。問題是我已經定義了DateTime dateMin = null;作爲該類的一個對象,然後在該方法內再次定義它。 – txcotrader
@txcotrader啊,我明白了。所以你基本上「隱藏」你的領域變量......呃,那會發生;) – Baz