Signals and Slots 是观察员设计模式的改进。
它在Qt (C++) 中被广泛使用,描述为这里。
有关>Java 。
I 使用模式观察器,但发现很难从课堂上继承,但很难从课堂上继承有听众。如果在继承的班级里也有非常困难的听众,那么听众的工作就很难控制。是否存在类似观察器但更能控制听众的模式? 感谢。
看来你不想用遗产 来实施"观察模式"
如果我在上述一点上没有搞错, 那么您就可以使用界面来执行这个界面 。 只要为对象和观察者声明两个界面, 然后让您的班级来执行这些界面 。
比如说,你的实验对象 可能看起来是这样的...
public interface Subject {
public void registerObserver(Observer o);
public void removeObserver(Observer o);
public void notifyObservers();
}
观察员 - 观察员 -
public interface Observer {
public void update(int age, float salary); // imaginary parameters.....
}
然后,您的具体对象可以从上述 Subject
界面继承 -
public class SubjectImpl implements Subject{
private ArrayList observers;
public void registerObserver(Observer o){
observers.add(o);
}
public void removeObserver(Observer o){
int i = observers.indexOf(o);
if (i >= 0) {
observers.remove(i);
}
}
public void notifyObservers(){
for (int i = 0; i < observers.size(); i++) {
Observer observer = (Observer)observers.get(i);
observer.update(30, 200.50); // imaginary arguments, provide your own...
}
}
}
您的 观察员
执行 -
public class ObserverImpl implements Observer{
public ObserverImpl(Subject s){
s.registerObserver(this);
}
public void update(int age, float salary){
// implementation
}
}
然后你们就可以使用--
Subject s = new SubjectImpl();
Observer o = new ObserverImpl(s);
// do whatever you want now
这种做法肯定比Class Inversitance
要好,因为在这种情况下,你的主体和观察员都可以继承其他类别,提供更灵活的设计。
如果您的问题是提供 Java 倾听器实施而不继承,那么您可以为此目的使用Annonymous class 。
ActionListener listener = new ActionListener() {
public void actionPerformed(ActionEvent ae) {
System.out.println("Anonymous class example");
}
};
yourButton.addActionListener(listener);
Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...
Check this, List<String> list = new ArrayList<String>(); for (int i = 0; i < 10000; i++) { String value = (""+UUID.randomUUID().getLeastSignificantBits()).substring(3, ...
I am in the middle of solving a problem where I think it s best suited for a decorator and a state pattern. The high level setting is something like a sandwich maker and dispenser, where I have a set ...
I have been trying to execute a MS SQL Server stored procedure via JDBC today and have been unsuccessful thus far. The stored procedure has 1 input and 1 output parameter. With every combination I ...
I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...
If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...
I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....
I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...