Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以将 Java Atomic 类与 javafx2 NumberProperty 一起使用吗?
正如我想AtomicLong与LongProperty.
AtomicLong
LongProperty
更新
我想更新 javafx progressBar 的进度值 throw Atomic Class 因为工作线程没有 javafx environment 。
如果要更新进度条,可以查看 javafx 并发包的 Task 类。
如果谈论非 javafx 线程。看看 Platform.runLater() 方法,它允许在 JFX 线程上运行 runnable。
我假设当值发生变化时,你想更新屏幕。AtomicLong 不支持触发此类事件,因此我怀疑您应该考虑另一种方法。