前端之家收集整理的这篇文章主要介绍了
Golang的一些功能函数——Slice,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
1. 翻转slice
func reverse(s []int) {
for i,j := 0,len(s)-1; i < j; i,j = i+1,j-1 {
s[i],s[j] = s[j],s[i]
}
}
2. []byte间比较大小
package main
import (
"bytes"
)
func main() {
var a,b []byte
if bytes.Compare(a,b) < 0 {
}
if bytes.Compare(a,b) <= 0 {
}
if bytes.Compare(a,b) > 0 {
}
if bytes.Compare(a,b) >= 0 {
}
if bytes.Equal(a,b) {
}
if !bytes.Equal(a,b) {
}
}
3. []byte <-> string
import "encoding/hex"
address := "Guangzhou"
address_byte := []byte(address)
address = hex.EncodeToString(address_byte)
原文链接:https://www.f2er.com/go/187406.html