當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Julia isassigned方法用法及代碼示例


用法:

isassigned(ref::RefValue) -> Bool

測試給定的 Ref 是否與某個值相關聯。對於位類型對象的 Ref ,這始終是正確的。如果引用未定義,則返回 false

例子

julia> ref = Ref{Function}()
Base.RefValue{Function}(#undef)

julia> isassigned(ref)
false

julia> ref[] = (foobar(x) = x)
foobar (generic function with 1 method)

julia> isassigned(ref)
true

julia> isassigned(Ref{Int}())
true

相關用法


注:本文由純淨天空篩選整理自julialang.org 大神的英文原創作品 Base.isassigned — Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。