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


Julia one()用法及代碼示例


這個one()是 julia 中的內置函數,用於返回指定值 x 的乘法標識,其中 x 是滿足 one(x)*x == x*one(x) == x 的值。

用法:
one(x)
or
one(T::type)

參數:

  • 指定值。
  • 一(T::類型):指定的號碼類型。

返回值:它返回指定值 x 的乘法標識,其中 x 是滿足 one(x)*x == x*one(x) == x 的值。

範例1:




# Julia program to illustrate 
# the use of one() method
   
# Getting return a multiplicative 
# identity of the specified value x
println(one(0))
println(one(1))
println(one(5))
println(one(5.9))

輸出:

1
1
1
1.0

範例2:


# Julia program to illustrate 
# the use of one() method
   
# Getting return a multiplicative 
# identity of the specified number type
println(one(Int))
println(one(String))

輸出:

相關用法


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