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


Julia oftype()用法及代碼示例


這個oftype()是 julia 中的一個內置函數,用於將給定類型的元素 y(say) 轉換為 x(say) 類型的元素。

用法: oftype(x, y)

參數:

  • x:指定第一種類型的元素。
  • y:指定的第二類元素。

返回值:它返回轉換後的元素類型。

範例1:




# Julia program to illustrate 
# the use of oftype() method
  
# Getting the converted type of elements.
a = 1;
b = 2.0;
println(oftype(a, b))

輸出:

2

範例2:


# Julia program to illustrate 
# the use of oftype() method
  
# Getting the converted type of elements.
a = 1;
b = 2.0;
println(oftype(b, a))

輸出:

1.0

相關用法


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