當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Julia Core.typeof用法及代碼示例


用法:

typeof(x)

獲取 x 的具體類型。

另見 eltype

例子

julia> a = 1//2;

julia> typeof(a)
Rational{Int64}

julia> M = [1 2; 3.5 4];

julia> typeof(M)
Matrix{Float64} (alias for Array{Float64, 2})

相關用法


注:本文由純淨天空篩選整理自julialang.org 大神的英文原創作品 Core.typeof — Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。