在我正在使用的小程序中button
.点击按钮3次可以设置三个标签吗?
你的意思是这样的吗?
int count = 0; String[] texts = new String[] {"Text 1", "Text 2", "Text 3"}; yourButton.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent ae) { if(count < 3) yourLabel.setText(texts[count]); count++; } });