📜  在 Julia 中获取数据类型的最低和最高值 – typemin() 和 typemax() 方法

📅  最后修改于: 2022-05-13 01:55:23.588000             🧑  作者: Mango

在 Julia 中获取数据类型的最低和最高值 – typemin() 和 typemax() 方法

typemin()是 julia 中的内置函数,用于返回指定数字 DataType 可表示的最小值。

示例 1:

# Julia program to illustrate 
# the use of typemin() method
  
# Getting the lowest value representable 
# by the specified numeric DataType.
println(typemin(Float16))
println(typemin(Float32))
println(typemin(Float64))
println(typemin(Int32))
println(typemin(Int64))

输出:

类型最大值()

typemax()是 julia 中的一个内置函数,用于返回指定数字 DataType 可表示的最大值。

示例 1:

# Julia program to illustrate 
# the use of typemax() method
  
# Getting the highest value representable 
# by the specified numeric DataType.
println(typemax(Float16))
println(typemax(Float32))
println(typemax(Float64))
println(typemax(Int32))
println(typemax(UInt32))
println(typemax(Int64))

输出: