您想要typeof
,也可能isa
:
julia> a = 2
2
julia> typeof(a)
Int64
julia> typeof("haha")
String
julia> typeof(typeof("haha"))
DataType
julia> typeof(Set([1,3,4]))
Set{Int64}
julia> 1 isa Number
true
julia> 1 isa String
false
julia> "1" isa Number
false
julia> "1" isa String
true
您可能还想使用@show
作为打印调试信息的便捷方式。