我正在编写一些代码 Java FX 代码,在其中评估单击了哪个按钮,因此我需要比较getSource
字符串的 id。
我总是得到如下字符串:
Button[id=playButton, styleClass=button]
Button[id=pauseButton, styleClass=button]
Button[id=stopButton, styleClass=button]
Button[id=nextButton, styleClass=button]
因此,根据单击哪个按钮,我执行了一些语句。我正在使用一组if
andelse if
评估contains(id)
id 将在哪里播放、暂停、停止和下一步。
我希望最好使用开关,这样每个案例都会播放、暂停、停止和下一步。我怎样才能得到一个子字符串,只得到播放、暂停、停止或下一步中的任何一个?