-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnum.go
127 lines (103 loc) · 2.29 KB
/
num.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
package rose
import (
"math"
"strconv"
)
func IntToInt64(i int) int64 {
return int64(i)
}
func Int64ToInt(i int64) int {
return int(i)
}
func IntToStr(i int) string {
return strconv.Itoa(i)
}
// IntIsBetween a < i < b
func IntIsBetween(i, a, b int) bool {
return a < i && i < b
}
// IntIsBetweenL a <= i < b
func IntIsBetweenL(i, a, b int) bool {
return a <= i && i < b
}
// IntIsBetweenR a < i <= b
func IntIsBetweenR(i, a, b int) bool {
return a < i && i <= b
}
// IntIsBetweenE a <= i <= b
func IntIsBetweenE(i, a, b int) bool {
return a <= i && i <= b
}
func Int64ToStr(i int64) string {
return strconv.FormatInt(i, 10)
}
func IntToBool(i int) bool {
return Int64ToBool(int64(i))
}
func Int64ToBool(i int64) bool {
if i != 0 {
return true
} else {
return false
}
}
// Int64IsBetween a < i < b
func Int64IsBetween(i, a, b int64) bool {
return a < i && i < b
}
// Int64IsBetweenL a <= i < b
func Int64IsBetweenL(i, a, b int64) bool {
return a <= i && i < b
}
// Int64IsBetweenR a < i <= b
func Int64IsBetweenR(i, a, b int64) bool {
return a < i && i <= b
}
// Int64IsBetweenE a <= i <= b
func Int64IsBetweenE(i, a, b int64) bool {
return a <= i && i <= b
}
// Float64ToStr 将 float64 转换为str
func Float64ToStr(f float64) string {
return strconv.FormatFloat(f, 'f', -1, 64)
}
func Float32ToStr(f float32) string {
return strconv.FormatFloat(float64(f), 'f', -1, 32)
}
func UInt32ToStr(i uint32) string {
return strconv.FormatUint(uint64(i), 10)
}
// UInt64ToStr 将uint64转换为字符串
func UInt64ToStr(i uint64) string {
return strconv.FormatUint(i, 10)
}
// Float64Round 获取float64保留n位小数
func Float64Round(f float64, n int) float64 {
pow10N := math.Pow10(n)
return math.Trunc(f*pow10N+0.5) / pow10N //0.5是为了四舍五入
/*
另一种方法:待验证
scale := math.Pow10(n)
return math.Round(f*scale) / scale
*/
}
// Float64RoundStr 获取 float64保留 n 位小数后返回字符串格式
func Float64RoundStr(f float64, n int) string {
return strconv.FormatFloat(f, 'f', n, 64)
}
// Float64RoundInt64 将小数四舍五入得到整数
func Float64RoundInt64(v float64) int64 {
return int64(math.Floor(v + 0.5))
}
func IntMin(a, b int) int {
if a < b {
return a
}
return b
}
func IntMax(a, b int) int {
if a > b {
return a
}
return b
}