我在单例类中创建了一个hashmap,我们将其称为Class A.我还创建了一个扩展AbstractTableModel的TableModel类,我们将其称为Class B.在C类中,我想要使用的值我的hashmap填充jtable。
我的问题是如何将散列图提供给B类?
答案 0 :(得分:0)
使用Composition ....
A a = A.getInstance();
//我假设getInstance()是返回A类Singleton引用的方法。
a.myHash.getKey();
//调用您想要的任何方法....
B b = new B();
//由于B不是单身,我们可以使用“新”
现在使用HashMap中的数据填充B中的表