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


Julia getfield()用法及代碼示例


這個getfield()是 julia 中的一個內置函數,用於從複合類型的指定值中提取命名字段。

用法:
getfield(value, name::Symbol)

參數:

  • value:複合類型的指定值。
  • 名稱::符號:指定的符號。

返回值:它返回從複合類型的指定值中提取的命名字段。

範例1:




# Julia program to illustrate 
# the use of getfield() method
   
# Getting the extracted named field
# from the specified value of composite type. 
a = 5//2
println(getfield(a,:num))

輸出:

5

範例2:


# Julia program to illustrate 
# the use of getfield() method
   
# Getting the extracted named field
# from the specified value of composite type. 
a = 7//3
println(getfield(a,:num))

輸出:

7

相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Extract a named field in Julia – getfield() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。