作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这就是我的代码:
Class A {
private boolean valueChanged;
public static void main(String args[]) {
B obj = new B();
obj.addPropertyChangeListener("valueChanged", new ValueChangeListener());
obj.someMethodThatFiresChange();
}
private class ValueChangeListener implements PropertyChangeListener {
public void propertyChange(PropertyChangeEvent evt) {
if(Boolean.TRUE.equals(evt.getNewValue()) {
doSomething(); //code never breaks here!!
}
}
}
}
<小时/>
Class B {
private boolean valueChanged;
public void setValueChanged(boolean b) {
boolean oldVal = valueChanged;
valueChanged = b;
firePropertyChange("valueChanged", oldVal, valueChanged);
}
public void someMethodThatFiresChange() {
setValueChanged(true);
}
}
但是,这段代码似乎不起作用 - 它永远不会到达事件触发时应该执行的 block !我在这里做错了什么?
最佳答案
这对我有用:
public class A {
/**
* @param args
*/
public static void main(String[] args) {
B obj = new B();
obj.addPropertyChangeListener("valueChanged", new ValueChangeListener());
obj.someMethodThatFiresChange();
}
private static final class ValueChangeListener implements PropertyChangeListener {
public void propertyChange(PropertyChangeEvent event) {
System.out.println("huhu");
if(Boolean.TRUE.equals(event.getNewValue())) {
System.out.println("haha");
}
}
}
private static final class B {
private boolean valueChanged;
private final PropertyChangeSupport pcSupport = new PropertyChangeSupport(this);
public void setValueChanged(boolean b) {
boolean oldVal = valueChanged;
valueChanged = b;
pcSupport.firePropertyChange("valueChanged", oldVal, valueChanged);
}
public void someMethodThatFiresChange() {
setValueChanged(true);
setValueChanged(false);
setValueChanged(true);
}
public void addPropertyChangeListener(String propertyName, PropertyChangeListener listener) {
pcSupport.addPropertyChangeListener(propertyName, listener);
}
public void addPropertyChangeListener(PropertyChangeListener listener) {
pcSupport.addPropertyChangeListener(listener);
}
}
}
输出:
huhu
haha
huhu
huhu
haha
我认为您在示例中遗漏了一些内容。
关于java - 为什么我的 PropertyListener 不触发?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10589880/
这就是我的代码: Class A { private boolean valueChanged; public static void main(String args[]) { B
我有课 CustomerBean { Customer customer; public CustomerBean() {...} public getCustomer() {
OSStatus err = AudioQueueNewOutput(&audioDescription, AudioPlayerAQOutputCallback, ( void* )self, ni
我是一名优秀的程序员,十分优秀!