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.
在 JavaFX 中,您可以通过andProperty获得 null 或非 null 的布尔绑定。val.isNull()val.isNonNull()
Property
val.isNull()
val.isNonNull()
这在 ReactFX 中的等价物是什么?
我试过了:
val.map(v -> v == null)
但它会返回Val<Boolean>带有实际值的 anull而不是true(在其他情况下正如预期的那样)。
Val<Boolean>
null
true
我认为
val.map(v -> false).orElseConst(true)
会给你你需要的。