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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。