Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以使用Java中的哪个属性更改Observer以及旧值是什么?Observable
Observer
Observable
notifyObservers只获得一个属性,即新值。
notifyObservers
在 notifyObservers(Object obj) 方法中,您可以将任何对象传递给您的观察者。您可以将此对象用作您想要交流的任何数据的容器(如旧值或新值)。你只需要把它放回观察者中就可以了。