这个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
相关用法
- Julia setfield()用法及代码示例
- Julia ceil()用法及代码示例
- Julia floor()用法及代码示例
- Julia min()用法及代码示例
- Julia sizeof()用法及代码示例
- Julia reverse()用法及代码示例
- Julia Array fill()用法及代码示例
- Julia foreach()用法及代码示例
- Julia count()用法及代码示例
- Julia cmp()用法及代码示例
- Julia Array findall()用法及代码示例
- Julia Array findprev()用法及代码示例
- Julia Array findnext()用法及代码示例
- Julia Array findfirst()用法及代码示例
- Julia Array findlast()用法及代码示例
- Julia ndims()用法及代码示例
- Julia isassigned()用法及代码示例
- Julia findlast()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Extract a named field in Julia – getfield() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。