3

我可以doClick在使按钮不可见后调用它吗?
像:

StopBtn.setVisible( false );
StopBtn.doClick();

还会doClick()做它的工作吗?

4

2 回答 2

4

发现这一点的最简单方法当然是对其进行测试(例如,如果您担心 Oracle 的那些人会改变行为,请在单元测试中)

@Test
public void clickOnInvisibleButton(){
  JButton button = new JButton( "test button" );
  button.setVisible( false );
  final boolean[] buttonClicked = new boolean[]{false};
  button.addActionListener( new ActionListener(){
    @Override
    public void actionPerformed( ActionEvent e ){
      buttonClicked[0] = true;
    }  
  });
  button.doClick();
  assertTrue( "Button has not been clicked", buttonClicked[0] );
}

否则,您可以查看该方法的源代码

public void doClick(int pressTime) {
    Dimension size = getSize();
    model.setArmed(true);
    model.setPressed(true);
    paintImmediately(new Rectangle(0,0, size.width, size.height));
    try {
        Thread.currentThread().sleep(pressTime);
    } catch(InterruptedException ie) {
    }
    model.setPressed(false);
    model.setArmed(false);
}

在那里你找不到对可见性的检查。再进一步看(例如在setPressed模型的方法中),您会发现enabled状态检查,但清楚地看到没有检查可见性存在。你还看到 anActionEvent被触发,这将触发actionPerformed按钮的方法

public void setPressed(boolean b) {
    if((isPressed() == b) || !isEnabled()) {
        return;
    }

    if (b) {
        stateMask |= PRESSED;
    } else {
        stateMask &= ~PRESSED;
    }

    if(!isPressed() && isArmed()) {
        int modifiers = 0;
        AWTEvent currentEvent = EventQueue.getCurrentEvent();
        if (currentEvent instanceof InputEvent) {
            modifiers = ((InputEvent)currentEvent).getModifiers();
        } else if (currentEvent instanceof ActionEvent) {
            modifiers = ((ActionEvent)currentEvent).getModifiers();
        }
        fireActionPerformed(
            new ActionEvent(this, ActionEvent.ACTION_PERFORMED,
                            getActionCommand(),
                            EventQueue.getMostRecentEventTime(),
                            modifiers));
    }

    fireStateChanged();
}
于 2012-08-27T21:01:09.040 回答
3

我刚刚给你试过了。它仍然有效,这意味着它仍然会触发该actionPerformed()方法。

但是,如果禁用它,它就不起作用:button.setEnabled(false)这是有道理的。

于 2012-08-27T20:55:36.827 回答