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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。