标签: javafx-2
在摇摆中我们有:
boolean SwingUtilities.isEventDispatchThread()
如果从swing事件派发线程调用它,则返回true。
javafx中有类似的东西吗?
答案 0 :(得分:3)
是的,您可以查看you are in the FX thread with:
Platform.isFxApplicationThread();
请注意,许多UI交互方法在FX线程外部调用时会抛出异常。