当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Julia getkey用法及代码示例


用法:

getkey(collection, key, default)

如果 collection 中存在键匹配参数 key ,则返回键匹配参数,否则返回 default

例子

julia> D = Dict('a'=>2, 'b'=>3)
Dict{Char, Int64} with 2 entries:
  'a' => 2
  'b' => 3

julia> getkey(D, 'a', 1)
'a': ASCII/Unicode U+0061 (category Ll: Letter, lowercase)

julia> getkey(D, 'd', 'a')
'a': ASCII/Unicode U+0061 (category Ll: Letter, lowercase)

相关用法


注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 Base.getkey — Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。