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


Julia typeof()用法及代碼示例


這個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}



相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Getting data type of elements in Julia – typeof() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。