这个typeof()
是 julia 中的一个内置函数,用于返回指定元素的具体类型。
用法: typeof(x)
参数:
- x:指定的元素。
返回值:它返回指定元素的具体类型。
范例1:
# Julia program to illustrate
# the use of typeof() method
# Getting the concrete type of
# the specified elements.
a = 1//2;
b = 1 / 2;
c = 7 % 2;
d = 2;
println(typeof(a))
println(typeof(b))
println(typeof(c))
println(typeof(d))
输出:
Rational{Int64} Float64 Int64 Int64
范例2:
# Julia program to illustrate
# the use of typeof() method
# Getting the concrete type of
# the specified elements.
a = [1, 2, 3, 4];
b = [1 2; 3 4];
c = [1 2; 3.5 4];
d = [1 2; 3 4;5 4];
println(typeof(a))
println(typeof(b))
println(typeof(c))
println(typeof(d))
输出:
Array{Int64, 1} Array{Int64, 2} Array{Float64, 2} Array{Int64, 2}
相关用法
- Julia oftype()用法及代码示例
- Julia isvalid()用法及代码示例
- Julia similar()用法及代码示例
- Julia ceil()用法及代码示例
- Julia floor()用法及代码示例
- Julia min()用法及代码示例
- Julia axes()用法及代码示例
- Julia findmin()用法及代码示例
- Julia parent()用法及代码示例
- Julia collect()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Getting data type of elements in Julia – typeof() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。