4.2 typeof(), isa()

typeof(値), isa(値, 型名) という使い方をする。

julia> typeof(1)
Int64

julia> typeof(3.2)
Float64

julia> typeof(1+2im)
Complex{Int64}

julia> typeof(1//2)
Rational{Int64}

julia> typeof('男')
Char

型名1 <: 型名2 は、型名1が型名2のサブタイプであるかどうか。



桂田 祐史