Golang math.Dim() 函数的使用示例
Go 语言提供了 math 包内置的基本常量和数学函数,可通过这些函数来对数值执行操作。 Dim() 函数 是由 math 包提供的,该函数返回 a-b 或 0 中的最大值。因此,要调用此函数,需要使用 import 关键字将 math 包添加到程序中。
语法:
func Dim(a, b float64) float64
- 如果在此函数中传递 Inf(无限大)参数,如 Dim(+Inf, +Inf),则此函数将返回 NaN。
- 如果在此函数中传递 -Inf(负无限大)参数,如 Dim(-Inf, -Inf),则此函数将返回 NaN。
- 如果在此函数中传递 NaN 参数,如 Dim(a, NaN) 或 Dim(NaN, b),则此函数将返回 NaN。
示例 1:
// Golang 程序演示 dim 函数
package main
import (
"fmt"
"math"
)
// 主函数
func main() {
// 使用 Dim() 函数
res_1 := math.Dim(2, -3)
res_2 := math.Dim(8, -1)
res_3 := math.Dim(-4, -2)
// 显示结果
fmt.Printf("Result 1: %.1f", res_1)
fmt.Printf("\nResult 2: %.1f", res_2)
fmt.Printf("\nResult 3: %.1f", res_3)
}
输出:
Result 1: 5.0
Result 2: 9.0
Result 3: 0.0
示例 2:
// Golang 程序演示 dim 函数
package main
import (
"fmt"
"math"
)
// 主函数
func main() {
// 使用 Dim() 函数
nvalue_1 := math.Dim(3, -1)
nvalue_2 := math.Dim(4, 3)
res := nvalue_1 + nvalue_2
fmt.Printf("%.1f + %.1f = %.1f",
nvalue_1, nvalue_2, res)
}
输出:
4.0 + 1.0 = 5.0